我正在尝试转换此
var j = jQuery.noConflict();
j('.products-grid li.item').hover(function(){
j(".products-grid li.item").not(this).stop(true,true).fadeTo(300, .8);
},function(){
j(".products-grid li.item").stop(true,true).fadeTo(300, 1);
});
原型但无法找到等效的.not。 任何人都给我一些指示
答案 0 :(得分:0)
我假设您使用$$
来获取Array
个元素。这意味着您可以使用Array.without
。
例:
如果this
是元素(如上面的代码中所示),请使用:
$$(".products-grid li.item").without(this)