gpt4 book ai didi

javascript - jQuery .slide 和 .slideUp。没开

转载 作者:太空宇宙 更新时间:2023-11-04 05:05:32 25 4
gpt4 key购买 nike

我已经制作了这个脚本:

$("#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 未完全打开。

我该如何解决?

最佳答案

试试这个

$("#comments .comment .links").hide();
$("#comments .comment").hover(
function() { $(".links", this).not(":animated").slideDown(300); },
function() { $(".links", this).not(":animated").slideUp(300); }
);

$("#comments .comment .links").hide();
$("#comments .comment").hover(
function() {
$(".links", this).stop(true, true).slideToggle();
}
);

关于javascript - jQuery .slide 和 .slideUp。没开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10514833/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com