gpt4 book ai didi

jQuery ~ 只获取内部 div id 名称

转载 作者:行者123 更新时间:2023-12-01 03:46:28 25 4
gpt4 key购买 nike

当点击红色区域时,它会提醒“红色”,当点击蓝色区域时,它会提醒“蓝色”和“红色”!如何让它只提醒“蓝色”然后停止。因为我只需要 div 名称的前面。

http://jsfiddle.net/FFZuD/1/

HTML

<div id="block1" style="width: 300px; height: 200px; background-color: red;">
<div id="block2" style="width: 100px; height: 100px; background-color: #09F; ">
</div>
</div>

JS

$('div').click(function(){
alert($(this).attr('id'));
});

最佳答案

您需要使用event.stopPropagation() jquery 函数。最好使用 this.id 而不是 $(this).attr('id');因为这样会更有效率。

<强> Live Demo

$('div').click(function(event){
event.stopPropagation()
//alert($(this).attr('id'));
alert(this.id);
});

关于jQuery ~ 只获取内部 div id 名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13341030/

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