gpt4 book ai didi

javascript - jQuery 选择器 : select a box but not an element inside the box

转载 作者:行者123 更新时间:2023-11-30 10:44:43 24 4
gpt4 key购买 nike

假设我有以下代码:

<div class="body">
Click me and it will work.
<div class="head">Click me and nothing will happen.</div>
</div>

当您在 .body div 内部单击但不在 .head div 内部单击时,我想显示“it works”。我该怎么做?

使用此代码,即使您单击 head 也会显示日志:

<script>
$('.body').click(function(){console.log('it works !');});
</script>

最佳答案

$('.body').click(function(e){

if($(e.target).hasClass('body'))
console.log('it works !');

});

关于javascript - jQuery 选择器 : select a box but not an element inside the box,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9053806/

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