我正在尝试在 Bootstrap中获得一个基本的下拉菜单:
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap 101 Template</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
</head>
<body>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="js/bootstrap.min.js"></script>
<div class="dropdown">
<!-- Link or button to toggle dropdown -->
<ul class="dropdown-menu" role="menu" aria-labelledby="dLabel">
<li><a tabindex="-1" href="#">Action</a></li>
<li><a tabindex="-1" href="#">Another action</a></li>
<li><a tabindex="-1" href="#">Something else here</a></li>
<li class="divider"></li>
<li><a tabindex="-1" href="#">Separated link</a></li>
</ul>
</div>
</body>
</html>
然而,什么也没有出现。我知道本地 CSS 和 JS 文件被正确引用。据我了解,默认的 JS 包含所有插件。
编辑:感谢大家的反馈。我只能添加,以防人们发现自己处于与我相同的情况,在复制和粘贴片段之前在教程中进一步向下移动。