是否可以执行 $(this)
的反向操作?
因此,它不是获取 this
元素,而是获取与 .sb-popular-thumb a
匹配但不包括 $(this)
的所有内容?
请参阅下面的示例代码。我已经用 $(this)
标记了 $(reverse)
,所以你可以看到我想要实现的目标。
$('.sb-popular-thumb a').hover(
function () {
$('.sb-popular').stop().animate({
height : '168px'
}, 200);
$(this).siblings('.sb-popular-thumb-title').show();
$(reverse).siblings('.sb-popular-thumb-overlay').stop().fadeIn(200);
},
function () {
$('.sb-popular').stop().animate({
height : '140px'
}, 200);
$(this).siblings('.sb-popular-thumb-title').hide();
$(reverse).siblings('.sb-popular-thumb-overlay').stop().fadeOut(200);
});
最佳答案
这将模仿你的“反向”
$('.sb-popular-thumb a').not($(this));