我想希望我的代码能说明一切。
当我将鼠标悬停在一个元素上时,我想在同一类的所有元素上运行每个函数,但不是当前悬停的元素:
$(document).on({
mouseenter: function () {
$('#%id% .imageStyle').each(function(){
if($(this) != $(this)){ // obviously this line is incorrect
// I only want to execute this if the current each iteration is not the element I am hovering over
$.this.pixastic("desaturate");
}
});
Pixastic.revert(this);
},
mouseleave: function () {
$(this).pixastic("desaturate");
}
}, '#%id% .imageStyle');
更新,这个新代码做我现在想要的......
$(".%id%desaturate img").addClass("sprightly");
$(document).on({
mouseenter: function () {
$('.sprightly').not(this).each(function(){
if($(this).is("img")){
$(this).trigger("mouseleave");
}
});
Pixastic.revert(this);
},
mouseleave: function () {
$(this).pixastic("desaturate");
}
}, '#%id% .imageStyle');