gpt4 book ai didi

javascript - 为什么我不能切换汉堡菜单的显示

转载 作者:行者123 更新时间:2023-12-04 13:06:23 25 4
gpt4 key购买 nike

我正在尝试使用汉堡包图标来切换 ul 元素的显示,以便在我单击该图标时显示或隐藏 ul 元素这是我的代码。

ul 元素很快就会消失,不会停留更长时间。我想单击汉堡菜单并显示 ul 元素或隐藏它们。您的帮助将不胜感激。

<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <!--<![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Fashionation</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<a href="#">Brand Name</a>
<ul id="list">
<li><a href="">Home</a></li>
<li><a href="">New Arrivals</a></li>
<li><a href="">Clothes</a></li>
<li><a href="">Sales</a></li>
<li><a href="">Stores</a></li>
<li><a href="">About</a></li>
<li><a href="">Contact</a></li>
</ul>
<a href="" class="menu" id="menu" onclick="displayMenu()"><i class="fa fa-bars fa-2x"></i></a>
</nav>
</header>

<script src="script.js"></script>
</body>
</html>

CSS

* {
margin: 0;
padding: 0;
box-sizing: border-box;
list-style-type: none;
text-decoration: none;
}

body {
/* background-color: red; */
}
header {
height: 450px;
/* background-color: orangered; */
}
nav {
height: 50px;
background-color: #262626;
line-height: 50px;
position: relative;
}
nav ul {
/* background-color: orangered; */
margin-top: 10px;
margin-bottom: 10px;
/* display: none; */
}

nav ul li {
padding: 2px;
text-align: center;

}
a {
color: #C70D6C;
}
.menu {
color: #C70D6C;
position: absolute;
top: 6px;
right: 10px;
line-height: 50px;
display: none;
}

@media screen and (max-width: 767.98px) {
.menu {
display: inline-block;
}

}

JavaScript

function displayMenu() {
let list = document.getElementById('list');
if (list.style.display === "none") {
list.style.display = "block";
} else {
list.style.display = "none";
}
}

最佳答案

使用此 href=""会导致页面重新加载。

使用其中一种解决方案。

<button class="menu" id="menu" onclick="displayMenu()">
<i class="fa fa-bars fa-2x"></i>
</button>

<a style="cursor: pointer" class="menu" id="menu" onclick="displayMenu()">
<i class="fa fa-bars fa-2x"></i>
</a>

如果您使用第二种解决方案,请移动内联css 到你的 css 类“菜单”。

关于javascript - 为什么我不能切换汉堡菜单的显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69262038/

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