我必须在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
});

08-15 14:27