3

我有个问题。我的 DOM 中有太多事件。上层正在捕捉更深层次的事件。

简单的例子:

<!DOCTYPE html>
<html>
<head>
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
    <script>
        $(document).ready(function(){
            $("p").click(function(){
                $(this).hide();
            })
            $("#second").click(function(){
                alert("second.");
            });
            $("#first").click(function(){
                alert("first.");
            });
        });
    </script>
    <style type="text/css">
        #first{
            width: 200px;
            height: 200px;
            background-color: red;
        }
        #second{
            width: 100px;
            height: 100px;
            background-color: green;
        }
    </style>
</head>
<body>

    <div id="first">
        <div id="second">

        </div>
    </div>

</body>
</html>

如果有人点击被第一个 div 包围的第二个 div,则两个 div 都会捕获该事件。在这种情况下,我怎样才能只捕获第二个 div 的点击事件,而离开第一个 div。

我了解了事件冒泡,而 C# 中的隧道就是问题所在。这个问题怎么称呼?如何使用 JavaScript 和 jQuery 解决问题。解决方法是一样的吗?

4

1 回答 1

6

你只需要阻止事件传播到父元素:

$("#second").click(function (e) {
    e.stopPropagation();

    alert("second.");
});

演示:http: //jsfiddle.net/EXbdt/3/

于 2013-01-28T10:38:08.350 回答