html中绑定事件写法1. ⽆参数调⽤
<button onclick="handleClick()"></button>
2. 传⼊this对象
<button onclick="handleClick(this)"></button>
<div onclick="handleClick(this)"><button></button></div>
htmlbutton属性this始终指向绑定事件的元素,与冒泡⽆关
3. 传⼊event对象
<button onclick="handleClick(event)"></button>
4. 对象函数内部的this
<button onclick="m.handleClick(this)">测试</button>
html中的this始终是button,handleClick内部的this是m本⾝
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论