render: function() {
return (
<td>
<img src={this.props.image.path} width="40" height="40" id={this.props.image.id}
onMouseOver={()=>document.getElementById(this.props.image.id).height="80",()=>document.getElementById(this.props.image.id).width="80"}
onMouseOut={()=>document.getElementById(this.props.image.id).height="40",()=>document.getElementById(this.props.image.id).width="40"}/>
</td>
);
}
我想在onMouseOver時更改圖像大小,但只改變寬度。 如何在onMouseOver中使用兩個函數。謝謝。onMouseOver中的兩個函數React.js
刪除'因爲它沒有任何與它 –