zoukankan      html  css  js  c++  java
  • e.preventDefault 和 e.stopPropagation

    e.stopPropagation()阻止事件冒泡
    
    <head>
        <title></title>
        <script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script>
    </head>
    <body>
        <table>
            <tr>
                <td><span>冒泡事件测试</span></td>
            </tr>
        </table>
    </body>
    
    我们先看这段代码:
    
        <script type="text/javascript">
            $(function () {
                $("table").click(function () { alert("table alert"); });
                $("td").click(function () { alert("td alert"); });
                $("span").click(function (){
                        alert("span alert");
                });
            });
        </script>
    
    我们会看到这样的情况:span alert -> td alert -> table alert。这就叫事件冒泡。就是从下到上,从里到外,事件依次触发。
    
    有的时候我们不希望事件冒泡咋办?
    
        <script type="text/javascript">
            $(function () {
                $("table").click(function () { alert("table alert"); });
                $("td").click(function () { alert("td alert"); });
                $("span").click(function (e){
                        alert("span alert");      
                        e.stopPropagation();
                });
            });
        </script>
    
    如果想获得事件相关信息,就要给匿名方法加一个e对象,e就是事件对象。
    
     
    
    e.preventDefault()阻止事件默认行为。
    
    
    $("a").click(function (e) {
         alert("默认行为被禁止喽");
         e.preventDefault();
    });
    
    <a href="http://www.baidu.com">测试</a>
    
     
    
     
    
    return false等效于同时调用e.preventDefault()和e.stopPropagation()
    
     
    
    return false除了阻止默认行为之外,还会阻止事件冒泡。如果手上有一份jquery源代码的话,可查看其中有如下代码:
    
    if (ret===false){
      event.preventDefault();
      event.stopPropagation();
    }
  • 相关阅读:
    Windows7下安装搭建Ngnix教程和配置详解
    CentOS6.6图文详细安装教程(有些设置大部分教程没出现过,附带网络设置等)
    每日一句(2014-8-29)
    每日一句(2014-8-28)
    每日一句(2014-8-27)
    javascript验证键盘keycode
    每日一句(2014-8-26)
    每日一句(2014-8-25)
    javascript 学习记录
    每日一句(2014-8-22)
  • 原文地址:https://www.cnblogs.com/yjhua/p/5047442.html
Copyright © 2011-2022 走看看