gpt4 book ai didi

javascript - jQuery - 排除被单击元素的父元素

转载 作者:行者123 更新时间:2023-11-28 12:47:50 25 4
gpt4 key购买 nike

我必须将单击的元素的父元素排除在 jQuery 元素集中('.fav')。有人对我如何做到这一点有任何建议吗?

$('.fav .favFrame').click(function(){
$('.fav').fadeOut(400); //exclude the .fav that child .favFrame was clicked here
});

谢谢

最佳答案

使用.not() :

$('.fav .favFrame').click(function(){
$('.fav').not($(this).parent()).fadeOut(400); //exclude the .fav that child .favFrame was clicked here
});

关于javascript - jQuery - 排除被单击元素的父元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5677349/

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