W3下拉列表不起作用

时间:2016-12-20 06:41:05

标签: javascript html css

我直接从W3使用了下拉代码(http://www.w3schools.com/howto/howto_js_dropdown.asp)。

我将所有三个部分(HTML,CSS,JS)粘贴到我的代码中。我的CSS和JS页面正确链接并正常工作。

我第一次使用GetSkeleton。

我的代码无效。

JS:



/* When the user clicks on the button, 
toggle between hiding and showing the dropdown content */
function myFunction() {
  document.getElementById("myDropdown").classList.toggle("show");
}

// Close the dropdown menu if the user clicks outside of it
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');
      }
    }
  }
}
&#13;
&#13;
&#13;

CSS

/* Dropdown Button */
.dropbtn {
  background - color:
    #4CAF50;
  color: white;
  padding: 8px;
  font-size: 8px;
  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: # 3e8 e41;
}

/* 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: #f9f9f9;
  min - width: 160 px;
  box - shadow: 0 px 8 px 16 px 0 px rgba(0, 0, 0, 0.2);
}

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

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

/* 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;
}

HTML

<div class="dropdown">
  <button onClick="myFunction()" class="drpbtn">Dropdown</button>
  <div id="myDropdown" class="dropdown-content">
    <a href="#">red</a>
    <a href="#">white</a>
    <a href="#">rose</a>
  </div>
</div>
<!--end of dropdown div-->

1 个答案:

答案 0 :(得分:0)

这很可能是因为有缺陷的引擎。

将班级名称更改为Show

的大写字母
.Show{
    display: block;
 }

在Js

function myFunction() {
     document.getElementById("myDropdown").classList.toggle("Show");
   }

除了你需要在DOm准备好后加载代码。如果您看到演示&amp;点击javascript,你可以看到,JavaScript被加载到正文中。

这是在你的dom准备就绪后加载javascript,否则你可能会看到myFunction没有定义错误。如果你想在dom准备就绪后加载js,你可以使用window.onload或在body标签的右括号附近包含js代码

<body>
  // rest of code
<script>
 // you js code
</script>
</body>

DEMO