event.target返回最初触发事件的DOM对象。
Vue例子:
main.js
methods:{ fan:function(event){ console.log(event.target); } }
html:
<button @click="fan">点击</button>
结果:
参考链接:http://www.365mini.com/page/jquery-event-target.htm