event//js部分showEvent(event){ //获取自定义data-id console.log(event.target.dataset.i..._vue中怎么使用event对象">
赞
踩
注意在事件中要使用 $ 符号
- //html部分
- <a href="javascript:void(0);" data-id="12" @click="showEvent($event)">event</a>
-
-
-
- //js部分
- showEvent(event){
- //获取自定义data-id
- console.log(event.target.dataset.id)
- //阻止事件冒泡
- event.stopPropagation();
- //阻止默认
- event.preventDefault()
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。