简体   繁体   中英

In React dangerouslySetInnerHTML is not working for html tags.

In React dangerouslySetInnerHTML is not working for html tags. it is not even working on homepage of React . Type <h1>this is heading.</h1> 来自React主页的摘录

How can i render html tags in React? Why did we pass * for <em> tags in React tutorials ?

On React homepage example they use markdown ( markdown does not understand HTML syntax) and library Remarkable ., if you want to use only HTML remove Remarkable from rawMarkup method - { __html: this.state.value }

 var HTMLEditor = React.createClass({ getInitialState: function() { return {value: 'Put here <h1>HTML</h1>'}; }, handleChange: function(e) { this.setState({ value: e.currentTarget.value }); }, markup: function() { return { __html: this.state.value }; }, render: function() { return ( <div className="html-editor"> <textarea onChange={ this.handleChange } defaultValue={this.state.value} /> <div className="html-editor__content" dangerouslySetInnerHTML={ this.markup() } /> </div> ); } }); ReactDOM.render(<HTMLEditor />, document.getElementById('container')); 
 .html-editor { border: 1px solid #000; padding: 10px; } .html-editor__content { margin: 10px 0 0 0; } 
 <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script> <div id="container"></div> 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM