-1
$("li.category-top >ul").hide();
$(".category-top").mouseover(function(){
$(this).children("ul").show();
});
$(".category-top").mouseleave(function(){
$(this).children("ul").hide();
});
肯定採取以下穆的解決方案。 'hover()'結合了'mouseenter'和'mouseleave'。 ('mouseenter'總是比'mouseover'好得多。) – Sparky