gpt4 book ai didi

javascript - 父级点击触发事件,子级不触发

转载 作者:太空狗 更新时间:2023-10-29 14:02:11 27 4
gpt4 key购买 nike

如果我有一个绝对定位的父 div,然后是一个具有更高 z-index 且相对定位的子 div,是否有一种方法可以让单击事件仅在父 div 被单击时注册,而不是里面的div?

Relevant jsFiddle

Updated fiddle with text input example

最佳答案

$(".parent").click(function(e) {
if (e.target == this) {
$(this).hide();
}
});​

演示: http://jsfiddle.net/Bt5HA/4/

关于javascript - 父级点击触发事件,子级不触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11123799/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com