<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>事件处理</title>
<style>
* {
margin-top: 20px;
}
.demo1 {
height:50px;
background: skyblue;
}
.box1 {
padding:5px;
background: skyblue;
}
.box2 {
padding:5px;
background: orange;
}
</style>
</head>
<body>
<div id="root">
<h2>欢迎来学习{
{
name}}</h2>
<!-- 阻止默认事件 -->
<a href="https://www.jianshu.com/writer#/notebooks/51864668/notes/98452516/preview" @click.prevent="showInfo">点我提示信息</a>
<!-- 阻止冒泡事件 -->
<div class="demo1" @click="showInfo">
<button @click.stop="showInfo">点我提示信息</button>
</div>
<!-- 事件修饰符连续写 -->
<div class="demo1" @click="showInfo">
<a href="https://www.jianshu.com/writer#/notebooks/51864668/notes/98452516/preview" @click.prevent.stop="showInfo">点我提示信息</a>
</div>
<!-- 事件只触发一次 -->
<button @click.once="showInfo">点我提示信息</button>
<!-- 事件捕获阶段处理事件 -->
<div class="box1" @click.capture="showMsg(1)">
div1
<div class="box2" @click="showMsg(2)">
div2
</div>
</div>
<!-- self只有event.target是当前操作元素的时候才执行事件 -->
<div class="demo1" @click.self="showInfo">
<button @click="showInfo">点我提示信息</button>
</div>
</div>
<script src="../js/vue.js"></script>
<script type="text/javascript">
Vue.config.productionTip = false;
new Vue({
el: '#root',
data: {
name: 'vue'
},
methods: {
showInfo() {
alert('同学你好');
},
showMsg(msg){
console.log(msg);
}
}
})
</script>
</body>
</html>
知识点:
vue事件修饰符:
1.prevent:阻止默认事件。(常用)
2.stop:阻止冒泡事件。(常用)
3.once:事件只触发一次。(常用)
4.capture:使用事件的捕获模式。默认是在事件流的冒泡阶段处理事件。
5.self:只有event.target是当前操作的元素时才触发。其实效果和冒泡类似,只是设置在不同的元素上。
6.passive:事件的默认行为立即执行,无需等待事件回调执行完毕。
7.修饰符可以连续写。