gpt4 book ai didi

javascript - “菜单触发”脚本在 IE11 中不起作用

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

我在使用 IE 11 时遇到代码问题。当我尝试单击触发按钮时,它不会响应,但在 Chrome、Firefox 和 MS Edge 中它工作正常。

请帮我解决这个问题。我一直在寻找很多,但我还没有解决这个问题。

$(function() {
$(".menu-trigger").on("click", function() {
$(this).toggleClass("active");
$(".g-nav").fadeToggle();
});
});

https://codepen.io/venJ7/pen/KKKaxKO

谢谢。

最佳答案

我尝试使用 IE 11 浏览器测试您的代码,发现它可以正常工作。

测试代码:

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<style>
.Nav {
position: relative;
}

.menu-trigger {
position: absolute;
display: block;
top: 0;
right: 0;
margin: 0;
padding: 10px;
z-index: 99999;
}

.menu-trigger i {
background-color: #000;
width: 44px;
height: 7px;
top: 24px;
right: 23px;
z-index: 9999;
}

.menu-trigger,
.menu-trigger i {
position: absolute;
}

.menu-trigger i:nth-of-type(1) {
top: 12px;
}

.menu-trigger i:nth-of-type(2) {
top: 0;
bottom: 0;
}

.menu-trigger i:nth-of-type(3) {
bottom: 0px;
}

.menu-trigger.active i:nth-of-type(1) {
transform: translateY(3px) rotate(-45deg);
}

.menu-trigger.active i:nth-of-type(2) {
opacity: 0;
}

.menu-trigger.active i:nth-of-type(3) {
transform: translateY(-7px) rotate(45deg);
bottom: 24px;
}

.g-nav {
display: none;
}

</style>
<script>
$(document).ready(function(){
$(function() {
$(".menu-trigger").on("click", function() {
$(this).toggleClass("active");
$(".g-nav").fadeToggle();
});
});

});
</script>
</head>
<body>
<div class="Nav">
<a class="menu-trigger">
<i></i>
<i></i>
<i></i>
</a>
<nav class="g-nav" id="g-nav">
<ul>
<li>
<p><a href="#">MENU</a></p>
</li>
</ul>
</nav>
</div>

</body>
</html>

在 IE 11 浏览器中的输出:

enter image description here

我建议您在 IE 11 中运行此示例以检查它是否正常工作。

如果问题仍然存在,请尝试检查控制台以查看是否有任何错误或警告消息。

关于javascript - “菜单触发”脚本在 IE11 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58501042/

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