使用dangerouslySetInnerHTML
const element = (<div dangerouslySetInnerHTML={{__html:"<h1>hello,this is react</h1>"}} />); ReactDOM.render( element, document.getElementById('example') );
使用dangerouslySetInnerHTML
const element = (<div dangerouslySetInnerHTML={{__html:"<h1>hello,this is react</h1>"}} />); ReactDOM.render( element, document.getElementById('example') );