当使用v-on进行事件绑定的时候,可以添加特定后缀,设置事件触发的特性
<button type="submit" @click.prevent="事件函数">测试</button>
.prevent:消除元素的默认操作
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="css/bootstrap.css" />
<script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/vue.js"></script>
</head>
<body>
<div id="container">
<form action="https://www.baidu.com">
<!--.prevent:消除元素的默认操作-->
<button type="submit" class="btn btn-success btn-xs" @click.prevent="test">测试</button>
</form>
</div>
<script type="text/javascript">
var vm = new Vue({
el:"#container",
data:{
},
methods:{
test:function(event){
console.log("-------test")
}
}
});
</script>
</body>
</html>
.stop 阻止事件冒泡(阻止子标签向上冒泡)
.self 设置只能自己触发事件,子标签不能触发
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="css/bootstrap.css" />
<script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/vue.js"></script>
</head>
<body>
<div id="container">
<form action="https://www.baidu.com">
<!--.prevent:消除元素的默认操作-->
<button type="submit" class="btn btn-success btn-xs" @click.prevent="test">测试</button>
</form>
<div style="width: 200px;height: 200px; background: red;" @click.self="method1">
<div style="width: 150px;height: 150px; background: green;" @click="method2">
<button type="button" @click.stop="method3">测试</button>
</div>
</div>
</div>
<script type="text/javascript">
var vm = new Vue({
el:"#container",
data:{
},
methods:{
test:function(event){
console.log("-------test")
},
method1:function(){
alert("1");
},
method2:function(){
alert("2");
},
method3:function(){
alert("3");
}
}
});
</script>
</body>
</html>
v-once 限定事件只触发一次
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/128146.html