了解如何使用 CSS 和 JavaScript 创建可点击的下拉菜单。
下拉菜单是一种可切换菜单,允许用户从预定义列表中选择一个值:
亲自试一试 »创建一个当用户单击按钮时出现的下拉菜单。
<div class="dropdown">
<button onclick="myFunction()" class="dropbtn">Dropdown</button>
<div id="myDropdown" class="dropdown-content">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
</div>
使用任何元素打开下拉菜单,例如 <button>、<a> 或 <p> 元素。
使用容器元素(如 <div>)创建下拉菜单并在其中添加下拉链接。
将 <div> 元素包裹在按钮和 <div> 周围,以使用 CSS 正确定位下拉菜单。
/* Dropdown Button */
.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;}
我们使用背景颜色、填充、悬停效果等设计了下拉按钮的样式。
这个.dropdown
类用途position:relative
,当我们希望将下拉内容放置在下拉按钮的正下方时需要使用它(使用position:absolute
)。
这个.dropdown-content
类保存实际的下拉菜单。它默认隐藏,并将在悬停时显示(见下文)。请注意min-width
设置为 160px。请随意更改此设置。提示:如果希望下拉内容的宽度与下拉按钮一样宽,请设置width
至 100%(并且overflow:auto
以在小屏幕上启用滚动)。
我们没有使用边框,而是使用了box-shadow
属性使下拉菜单看起来像"card"。我们还使用 z-index 将下拉列表放置在其他元素的前面。
/* 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 下拉菜单教程了解有关下拉菜单的更多信息。
提示:去我们的悬停下拉菜单了解有关可悬停下拉菜单的更多信息
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!