gpt4 book ai didi

javascript - 悬停菜单 jquery 上下滑动太快

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

我制作了这个悬停菜单但是有问题这是我的 jquery 代码

  $("#right_side li").mouseenter(function(e) {

$(this).children('ul').stop(true,true).slideDown();

});
$(this).stop();
$("#right_side li").mouseleave(function(e) {
$(this).children('ul').stop(true,true).slideUp();

});

这是我的 php 代码

function menu($li)
{
echo "<ul class='hovermenu'>";
$result = mysqli_query($li, "SELECT * FROM `categories` WHERE 1") or die(mysqli_error($li));

while ($Row = mysqli_fetch_array($result)) {
echo "<li class='cat'><div class='cat_div' ><a href='index.php?cat=".$Row['catid']."'>" . $Row['catname'] . "</a></div><ul class='sub'>";
$result2 = mysqli_query($li, "SELECT * FROM `brand` WHERE catid=".$Row['catid']."") or die(mysqli_error($li));
while ($Row2 = mysqli_fetch_array($result2)) {
echo "<li><a href='index.php?brand=".$Row2['id']."&cat=".$Row['catid']."'>" . $Row2['name'] . "</a></li>";
}
echo"</ul></li>";
}

echo "</ul>";
}

我的问题是当我的鼠标离开时我鼠标太快了我的菜单上下滑动太快请帮助我!!!

最佳答案

将速度添加到您的 slideUp 调用中,例如“慢”

slideUp("slow")

您还可以使用以毫秒为单位的值。

关于javascript - 悬停菜单 jquery 上下滑动太快,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26329730/

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