html中绑定事件写法
作者:互联网
1. 无参数调用
<button onclick="handleClick()"></button>
2. 传入this对象
<button onclick="handleClick(this)"></button> <div onclick="handleClick(this)"><button></button></div>
this始终指向绑定事件的元素,与冒泡无关
3. 传入event对象
<button onclick="handleClick(event)"></button>
4. 对象函数内部的this
<button onclick="m.handleClick(this)">测试</button>
html中的this始终是button,handleClick内部的this是m本身
标签:始终,传入,对象,button,绑定,html,写法 来源: https://www.cnblogs.com/mengff/p/14844863.html