试图隐藏所有其他物品,但它仍然影响(这笔)项目。
$(function() {
$(".FL-pest-indv").css({ display: none });
$(".FL-pest-cat").live( click ,
function() {
$(".FL-pest-indv").not($(this)).hide(600);
$(this).children( .FL-pest-indv ).stop(true, true).animate({ "height": "toggle" , "opacity" : "toggle"},600);
});
});
或
$(function() {
$(".FL-pest-indv").css({ display: none });
$(".FL-pest-cat").live( click ,
function() {
$(".FL-pest-indv").not(this).hide(600);
$(this).children( .FL-pest-indv ).stop(true, true).animate({ "height": "toggle" , "opacity" : "toggle"},600);
});
});
正在为我工作。