触发它的按钮下方的位置下拉菜单

时间:2018-05-12 13:32:23

标签: javascript html css drop-down-menu

我正在尝试创建一个下拉菜单,以便在简单的网站上轻松导航。我从w3schools借了大量代码。免责声明是我在造型和js方面都非常糟糕。

问题是当我添加一个额外的按钮时,菜单显示在第一个按钮下。

function myFunction(a) {

  document.getElementById(a).classList.toggle("show");

}
window.onclick = function(event) {
  if (!event.target.matches('.dropbtn')) {
    var dropdowns = document.getElementsByClassName("dropdown-content");
    var i;
    for (i = 0; i < dropdowns.length; i++) {
      var openDropdown = dropdowns[i];
      if (openDropdown.classList.contains('show')) {
        openDropdown.classList.remove('show');
      }
    }
  }
}
.dropbtn {
  background-color: #3498DB;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}


/* Dropdown button on hover & focus */

.dropbtn:hover,
.dropbtn:focus {
  background-color: #2980B9;
}


/* The container <div> - needed to position the dropdown content */

.dropdown {
  position: relative;
  display: inline-block;
}


/* Dropdown Content (Hidden by Default) */

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}


/* Links inside the dropdown */

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}


/* Change color of dropdown links on hover */

.dropdown-content a:hover {
  background-color: #ddd
}


/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */

.show {
  display: block;
}
<div class="dropdown">
  <button onclick="myFunction('myDropdown0')" class="dropbtn">Menu1</button>
  <div id="myDropdown0" class="dropdown-content">
    <a href="{% url 'App1:index' %}">choice1</a>
  </div>
  <button onclick="myFunction('myDropdown1')" class="dropbtn">Menu2</button>
  <div id="myDropdown1" class="dropdown-content">
    <a href="{% url 'App2:index' %}">Choice1</a>
    <a href="{% url 'App2:page2' %}">Choice2</a>
  </div>
</div>

感觉应该有一种简单的方法来编辑它以考虑按下按钮的位置,但我不确定如何。

1 个答案:

答案 0 :(得分:2)

您应该更新For Each功能和HTML window.onclick标记。一种解决方案是首先关闭所有菜单,然后打开菜单。

请尝试:

&#13;
&#13;
div
&#13;
function myFunction(a) {
		closeAllMenu();
        document.getElementById(a).classList.toggle("show");
}

function closeAllMenu(){//before show menu, close all menu first
        var dropdowns = document.getElementsByClassName("dropdown-content");
        var i;
        for (i = 0; i < dropdowns.length; i++) {
            var openDropdown = dropdowns[i];
                openDropdown.classList.remove('show'); 
        }
}

window.onclick = function(event) { // click outside the menu, close menu
    if (!event.target.matches('.dropbtn')) {
        var dropdowns = document.getElementsByClassName("dropdown-content");
        var i;
        for (i = 0; i < dropdowns.length; i++) {
            var openDropdown = dropdowns[i];
            if (openDropdown.classList.contains('show')) {
                openDropdown.classList.remove('show');
            }
        }
    }
}
&#13;
.dropbtn {
    background-color: #3498DB;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: #2980B9;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}
&#13;
&#13;
&#13;