码迷,mamicode.com
首页 > Web开发 > 详细

jQuery中return false,e.preventDefault(),e.stopPropagation()的区别

时间:2017-06-14 16:37:48      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:对象   query   cti   blog   匿名方法   type   on()   事件对象   turn   

1、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就是事件对象。

2、e.preventDefault()阻止事件默认行为。

$("a").click(function (e) {
     alert("默认行为被禁止喽");
     e.preventDefault();
});
<a href="http://www.baidu.com">测试</a>

 

 3、return false等效于同时调用e.preventDefault()和e.stopPropagation()

 

return false除了阻止默认行为之外,还会阻止事件冒泡。如果手上有一份jquery源代码的话,可查看其中有如下代码:
if (ret===false){
  event.preventDefault();
  event.stopPropagation();
}

 

jQuery中return false,e.preventDefault(),e.stopPropagation()的区别

标签:对象   query   cti   blog   匿名方法   type   on()   事件对象   turn   

原文地址:http://www.cnblogs.com/theWayToAce/p/7008627.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!