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> ); } });
你需要将一些字母大写.
<img src="/images/profile-pic.png" height="100" onClick={this.onClick} onMouSEOver={this.onHover} />