zoukankan      html  css  js  c++  java
  • JQUERY 阻止a 标签链接

    <head>
     <title></title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
     <!--   引入jQuery -->
    <script src="http://www.cnblogs.com/scripts/jquery-1.3.1.js" type="text/javascript"></script>
     <script>
    $(function(){
     $("a").click(function(event) {
       alert(event.type);//获取事件类型
       return false;//阻止链接跳转
     });
    })
      </script>
    </head>
    <body>
    <a href='http://google.com'>click me .</a>
    </body>
    </html>

    作者:沐雪
    文章均系作者原创或翻译,如有错误不妥之处,欢迎各位批评指正。本文版权归作者和博客园共有,如需转载恳请注明。
    如果您觉得阅读这篇博客让你有所收获,请点击右下方【推荐】
    找一找教程网-随时随地学软件编程 http://www.zyiz.net/

  • 相关阅读:
    hdoj:2033
    hdoj:2032
    hdoj:2031
    hdoj:2029
    hdoj:2028
    hdoj:2027
    hdoj:2024
    hdoj:2023
    hdoj:2022
    hdoj:题目分类
  • 原文地址:https://www.cnblogs.com/puzi0315/p/2658227.html
Copyright © 2011-2022 走看看