是否可以执行相反的操作$(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);
});