我已经制作了这个脚本:
$("#comments .comment .links").hide();
$("#comments .comment").hover(
function() { $(".links", this).stop(true).slideDown(300); },
function() { $(".links", this).stop(true).slideUp(300); }
);
现在我有一个问题。当我将鼠标悬停在评论 div 上时。我徘徊了几次。.links div 不再显示。div 未完全打开。
我该如何解决?