<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>08vue事件的处理</title>
<script src="./vue.js"></script>
<script>
window.onload = function(){
var vm = new Vue({
el:'.box',
methods:{
fnFather:function(){
alert('father');
},
fnSon:function(){
alert('son');
}
}
})
}
</script>
</head>
<body>
<div class="box">
<!-- 阻止提交事件 submit.prevent -->
<!-- <form @submit.prevent = "" action=""> -->
<form action="">
<input type="text" name="user">
<!-- 既组织了冒泡事件,又组织了提交事件 -->
<input @click.stop.prevent="" type="submit">
</form>
<!-- 阻止冒泡事件 stop -->
<div @click="fnFather" class="father" style="background:red">father
<div @click.stop="fnSon" class="son" style="background:green">son</div>
</div>
</div>
</body>
</html>vue事件的处理
最新推荐文章于 2025-06-09 14:11:45 发布
本文介绍了一个使用Vue.js编写的示例页面,展示了如何通过Vue处理常见的DOM事件,如阻止默认行为、阻止事件冒泡等。具体包括:阻止表单提交事件、阻止事件冒泡以及阻止并提交事件。
488

被折叠的 条评论
为什么被折叠?



