gpt4 book ai didi

javascript - W3 下拉菜单不起作用

转载 作者:行者123 更新时间:2023-11-28 02:46:42 25 4
gpt4 key购买 nike

我使用了直接来自 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');
}
}
}
}

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-->

最佳答案

这很可能是由于错误的引擎。

将类名改为caps 即Show

.Show{
display: block;
}

在 Js 中

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

此外,您需要在 DOm 准备好后加载代码。如果您看到演示并单击 javascript,您会看到,JavaScript 已加载到正文中。

那是在您的 dom 准备好之后加载 javascript,否则您可能会看到 myFunction not defined 错误。如果你想在 dom 准备好后加载 js,你可以使用 window.onload 或在 body 标签的右大括号附近包含 js 代码

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

DEMO

关于javascript - W3 下拉菜单不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41236291/

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