2010-07-12 71 views

回答

1

你可以去這樣的事情:

$('div').hover(function(){ 
    if ($(this).attr('id') === 'parentdiv') { 
    $('div#childdiv').hide(); 
    } 
}); 
+0

嘿囊,感謝您的快速答覆,但它並不塞梅爲我工作...我」已經評論過我的代碼... – eric 2010-07-12 10:03:20

1
$("div#parentdiv").hover(function() { 
    $("div:child").hide("slow", function() { 
    // use callee so don't have to name the function 
    $(this).prev().hide("slow", arguments.callee); 
    }); 
});