gpt4 book ai didi

javascript - .toggle() 没有将显示设置为无?

转载 作者:行者123 更新时间:2023-12-03 11:37:07 26 4
gpt4 key购买 nike

在创建 jQuery 下拉菜单时,我遇到了一个最奇怪的问题 - 已隐藏的元素仍然影响页面。为什么会发生这种情况,我该如何解决?它通过阻止按钮的一部分来影响功能,迫使人们从未阻止的部分调用该功能。例如;

<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#start").mouseenter(function(){
$("#box").stop().toggle();
$("#box").stop().animate({
top:'50px',
opacity:'1'
},400,function(){
});
});
$("#start").mouseleave(function(){
$("#box").stop().animate({
top:'25px',
opacity:'0'
},400,function(){
$("#box").stop().toggle();
});
});
});
</script>
</head>

<body>
<button id="start">Start Animation</button>
<div id ="box" style="background:#98bf21;height:100px;width:100px;position:absolute;opacity:0;display:none;top:25px;">
</div>

</body>
</html>

编辑:如果看不到问题,请将顶部设置设置为 10 像素以完全覆盖按钮。

最佳答案

我刚刚做了一个 Fiddle使用 div 的 z-index:-1; 解决了问题。当此 z-index 被删除时,按钮的 mouseenter 对按钮的下部不起作用,因为动画 div 虽然不可见,但覆盖了按钮的一部分。

关于javascript - .toggle() 没有将显示设置为无?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26445954/

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