click事件工作正常,但onmouseover事件不起作用。
ProfImage = React.createClass({
getInitialState: function() {
return { showIcons: false };
},
onClick: function() {
if(this.state.showIcons == true) {
this.setState({ showIcons: false });
}
else {
this.setState({ showIcons: true });
}
},
onHover: function() {
this.setState({ showIcons: true });
},
render: function() {
return (
<div>
<span className="major">
<img src="/images/profile-pic.png" height="100" onClick={this.onClick} onmouseover={this.onHover} />
</span>
{ this.state.showIcons ? <SocialIcons /> : null }
</div>
);
}
});
答案 0 :(得分:20)
您需要将一些字母大写。
<img src="/images/profile-pic.png" height="100" onClick={this.onClick} onMouseOver={this.onHover} />
答案 1 :(得分:13)
上述答案都是正确的,但您也需要将这些方法绑定到类上下文中!
<img src="/images/profile-pic.png" height="100" onClick={this.onClick.bind(this)} onMouseOver={this.onHover.bind(this)} />