vue常用的事件修饰符
vue事件修饰符,有5个很常用的阻止冒泡:.stop、阻止默认事件:.prevent、添加事件侦听器时使用事件捕获模式 :.capture、只当事件在该元素本身触发时触发回调:.self 、事件只触发一次:.once,5个常用的vue事件修饰符,举一个例子,其他4个你也懂了。1.阻止冒泡:.stop看个例子,你就懂了<!Doctype html><...
·
vue事件修饰符,有5个很常用的阻止冒泡:.stop、阻止默认事件:.prevent、添加事件侦听器时使用事件捕获模式 :.capture、只当事件在该元素本身触发时触发回调:.self 、事件只触发一次:.once,5个常用的vue事件修饰符,举一个例子,其他4个你也懂了。
1.阻止冒泡:.stop
看个例子,你就懂了
<!Doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK"/>
<title>使用 .stop阻止冒泡</title>
<style type="text/css">
*{margin:0;padding:0;}
body{
width:600px;
margin:100px auto;
}
.box {
height:200px;
background:red;
padding:50px;
}
</style>
</head>
<body>
<div id="app">
<div class="box" @click="box">
<input type="button" value="点击我" @click.stop="btn">
</div>
</div>
<script type="text/javascript" src="lib/vue.js"></script>
<script>
var vm = new Vue({
el: '#app',
data: {},
methods: {
box() {
console.log('这是触发了 box div 的点击事件!')
},
btn() {
console.log('这是触发了 btn 按钮 的点击事件!')
}
}
});
</script>
</body>
</html>
2. 阻止默认事件:.prevent
3. 添加事件侦听器时使用事件捕获模式 :.capture
4.只当事件在该元素本身(比如不是子元素)触发时触发回调:.self
5.事件只触发一次:.once
更多推荐
已为社区贡献2条内容
所有评论(0)