在原生的 DOM 事件绑定中,可以在事件处理函数的形参处,接收事件参数对象 event
布局代码
vue代码(默认参数event,打印此event)
addCount(e){
console.log(e)
}
打印结果(PointerEvent)
布局代码
vue代码
addCount(e){
this.count+=1;
if(this.count%2==0){ //偶数
e.target.style.backgroundColor='red'
}else{
e.target.style.backgroundColor=''
}
}
布局代码
vue代码
addCount(n,e){
this.count+=n;
if(this.count%2==0){ //偶数
e.target.style.backgroundColor='red'
}else{
e.target.style.backgroundColor=''
}
}
在事件处理函数中调用 event.preventDefault() 或 event.stopPropagation() 是非常常见的需求。因此, vue 提供了事件修饰符的概念,来辅助程序员更方便的对事件的触发进行控制。常用的 5 个事件修饰符如下:
事件修饰符 | 说明 |
---|---|
.prevent | 阻止默认行为(例如:阻止 a 连接的跳转、阻止表单的提交等) |
.stop | 阻止事件冒泡 |
.capture | 以捕获模式触发当前的事件处理函数 |
.once | 绑定的事件只触发1次 |
.self | 只有在 event.target 是当前元素自身时触发事件处理函数 |
布局代码
跳转到百度首页
vue代码(使用了preventDefault
)
show(e){
e.preventDefault()
console.log('点击了a标签')
}
布局代码
跳转到百度首页
vue代码
show(e){
console.log('点击了a标签')
}
布局代码
vue代码
btnHandle(e){
e.stopPropagation()
console.log('btnHandle')
},
divHandle(){
console.log('divHandle')
}
布局代码
vue代码
btnHandle(){
console.log('btnHandle')
},
divHandle(){
console.log('divHandle')
}