gpt4 book ai didi

jQuery 窃取 child 的点击

转载 作者:行者123 更新时间:2023-12-03 22:26:15 25 4
gpt4 key购买 nike

说我有

<h3>
some text
<a href="google.com">google</a>
</h3>

我想给h3附加一个点击事件

$("h3").click(function(){ $(this).slideDown(); return false; });

但我也想保留对实际链接的点击。有没有办法用 jQuery 做到这一点?

谢谢!

最佳答案

您可以查看事件的实际 .target 如果是 <a> 则不执行任何操作元素,例如:

$("h3").click(function(e){ 
if(e.target.nodeName == 'A') return;
$(this).slideDown();
return false;
});

关于jQuery 窃取 child 的点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3973835/

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