在使用React过程中,为自定义Table组件中的button添加OnClick事件,发现使用
<button type="button" className="btn btn-link evaluate_form" onClick={this.handClick}>评估报表</button>
时,若写为onClick={this.handClick()},则在该页面加载时,该事件会自动执行。
需去掉最后的()方可正常在点击时触发函数执行。
在使用React过程中,为自定义Table组件中的button添加OnClick事件,发现使用
<button type="button" className="btn btn-link evaluate_form" onClick={this.handClick}>评估报表</button>
时,若写为onClick={this.handClick()},则在该页面加载时,该事件会自动执行。
需去掉最后的()方可正常在点击时触发函数执行。
本文标题:React为button添加OnClick事件
本文链接:https://www.haomeiwen.com/subject/khubwttx.html
网友评论