我有一个.hide()函数根据复选框隐藏div。
JS Fiddle of it working here
Real site example here
我试图给它动画,以便.hide()将淡入/淡出而不是消失。
尝试使用jQuery Fade函数,但作为.hide()的参数,但似乎不起作用
$("div").click(function () { $(this).hide("fade",{},1000); });
我试过在我的代码中使用这个(见JS Fiddle)如下:
if(allSelected.length > 0){ $("div.prodGrid > div:not(" + allSelected + ")").hide("fade",1000); }
我哪里错了?
解决方法
$("div").click(function () { $(this).fadeOut(1000); })
还有fadeIn和fadeToggle。