用于扩展导航栏的Javascript代码无法按预期工作

问题描述 投票:0回答:2

我正在为我的网站制作一个导航栏,我已经制作了一些与CSS一起使用的Javascript。在运行之前,请确保结果窗口的宽度小于760像素。

function compressNavbar() {
  var x = document.getElementById("navbar");
  if (x.className === "responsive-h2") {
    x.className += " responsive-h2-expand";
  } else {
    x.className = "responsive-h2";
  }
}
ul.blue {
  background-color: DodgerBlue;
}

ul.blue * {
  color: white;
}


/* Horizontal navbar */

ul.horizontal-navbar {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.horizontal-navbar li {
  float: left;
}

.horizontal-navbar li a {
  display: block;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}


/* responsive */

@media screen and (max-width: 760px) {
  ul.responsive-h2 li {
    display: block;
  }
  ul.responsive-h2 li:not(:first-child):not(:last-child) {
    display: none;
    /* Remove all links except home and the menu button */
  }
  ul.responsive-h2-expand {
    position: relative;
  }
  .responsive-h2-expand li:last-child {
    position: absolute;
    right: 0;
    top: 0;
  }
  ul.responsive-h2-expand li {
    float: none !important;
    display: block !important;
  }
  ul.responsive-h2-expand li * {
    text-align: left !important;
  }
  ul.responsive-h2-expand li a {
    padding: 10px 14px;
    padding-left: 18px;
    padding-bottom: 11px;
  }
  ul.responsive-h2-expand li {
    list-style-type: none;
  }
}
<ul class="responsive-h2 horizontal-navbar blue" id="navbar">
  <li><a href="#">Home</a></li>
  <li><a href="#">link</a></li>
  <li><a href="#">link</a></li>
  <li>
    <a href="javascript:void(0)" onclick="compressNavbar()">
      Menu
    </a>
  </li>
</ul>

开始工作正常 - 我们有一个漂亮的风格导航栏,除了主页和菜单按钮外,所有链接都缺失。但是当我按下菜单按钮时,扩展的导航栏没有使用我的blue类进行样式设置,并且没有显示我的所有链接。此外,再次按下菜单时,我的大多数样式都丢失了。

我的代码出现了什么问题?由于我是JS的新手,我认为是 - 我认为我可能会对className做错事,但我不知道是什么或如何解决它。

提前致谢。

javascript html css responsive-design navbar
2个回答
1
投票

我认为使用classList.toggle更好:

function compressNavbar() {
  var x = document.getElementById("navbar");
  x.classList.toggle("responsive-h2-expand");
}

0
投票

我认为你没有正确地取代class

function compressNavbar() {
   var x = document.getElementById("navbar");
   if (x.className === "responsive-h2") {
       x.className += " responsive-h2-expand";
       // you are not adding "blue" and "horizontal-navbar" classes back
       // ex: x.className = "responsive-h2 responsive-h2-expand horizontal-navbar blue"
   } else {
       x.className = "responsive-h2";
   }
}

你可以使用qazxsw poi方法有效地操纵qazxsw poi

© www.soinside.com 2019 - 2024. All rights reserved.