zoukankan      html  css  js  c++  java
  • vue的prevent事件

    在实际开发中,有的时候,我们想要改变某些组件原生的动作,比如默认情况下,如果我点击一个<a>标签,那么默认会自动跳转到href对应的链接上去。如果我想要阻止这些原生的动作行为,那么这时候,我们就要使用prevent了,我们来举一个例子看看:

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Document</title>
        <script src="./js/vue.js"></script>
    </head>
    <body>
        <div id="app">
             <a href="www.baidu.com" @click.prevent="func3">baidu</a>
        </div>
        <script>
            var m = {
                 
            }
     
            var vm = new Vue({
                el:"#app",
                data: m,
                methods:{
                     func3:function(){
                        alert('阻止a标签原先点击跳转的默认行为。')
                     }
                }
            })
        </script>
     
    </body>
    </html>
    

      

     

     点击以后没有跳转到href指定的页面,而是跳出了一个弹窗。只做了func3中规定的动作。

  • 相关阅读:
    30-JDBC(2)
    29-JDBC(1)
    27-网络编程
    26-IO(中)
    git push 报错
    IsEmpty和isBlank区别
    java.lang.NumberFormatException: For input string: "0.9"
    Integer与Double类型转换
    Lambda 表达式排序
    Number & Math 类方法
  • 原文地址:https://www.cnblogs.com/lukairui/p/14440516.html
Copyright © 2011-2022 走看看