我有
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'});
});
@ user544079希望这个演示可以帮助您:)我建议通过切换类名来更改背景颜色。