对于我的网站中的某些元素,我有以下代码:

当用户单击div时,触发对div内的按钮的单击(在这种情况下,这些按钮将打开模式),这在页面中我创建window.location而不是触发器的其他位置也起作用。此代码有什么不好?我不知道:(

对不起,我的英文,谢谢。

jQuery(".hover-content").click(function(e){
        var hl = jQuery(this);
        jQuery(this).find("button").each(function(){
            if(jQuery(this).is(":visible")){
                jQuery(this).trigger("click");
            }
        });
    });

控制台显示此错误:



小例子:
https://jsfiddle.net/z0704nss/

最佳答案

这是因为Javascript中的event bubbling
通过将 e.stopPropagation() 添加到您的代码中,我可以复制并解决它。

$(".hover-content").click(function(e){
    e.preventDefault();
    console.log('hi')
    e.stopPropagation();
    $(this).find("button").each(function(){
        if($(this).is(":visible")){
            $(this).trigger("click");
        }
    });
});

$('.button-ex').click(function(e){
    e.preventDefault();
    e.stopPropagation();
    console.log('clicked button')
})
body {
    background-color: #eef;
    padding: 5px;
}
.hover-content{
    background-color:#FF0000
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div class="hover-content">
    <button id="btnOne" class="button-ex">demo1</button>
    <button id="btnTwo" class="button-ex">demo2</button>
</div>

09-25 19:53
查看更多