请记住,您的img实际上不是DOM元素,而是Javascript表达式。
这是一个JSX属性表达式。将大括号放在src字符串表达式周围,它将起作用。参见http://facebook.github.io/react/docs/jsx-in-depth.html#attribute-expressions
在javascript中,class属性是使用className的引用。请参阅本节中的注释:http : //facebook.github.io/react/docs/jsx-in-depth.html#react-composite-components
var Hello = React.createClass({ render: function() { return <div><img src={'http://placehold.it/400x20&text=slide1'} alt="boohoo" className="img-responsive"/><span>Hello {this.props.name}</span></div>; } }); React.renderComponent(<Hello name="World" />, document.body);
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)