是的
var TestApp = React.createClass({
getComponent: function(){
console.log(this.props);
},
render: function(){
return(
<div>
<ul>
<li onClick={this.getComponent}>Component 1</li>
</ul>
</div>
);
}
});
React.renderComponent(<TestApp />, document.body);
我想给单击的列表元素的背景着色。如何在 React 中实现?
差不多
$('li').on('click', function(){
$(this).css({'background-color': '#ccc'});
});