我懷疑我沒有正確實現javascript引導程序文件,因爲下拉菜單不起作用。目前,我已將引導程序保存到我的項目文件夾中。 我看了其他工作示例代碼(甚至嘗試複製並粘貼它作爲測試),並且菜單不會下降。引導菜單中的下拉菜單不起作用
這裏是我的代碼
<head>
<link rel = "stylesheet" type = "text/css" href = "index.css">
<link href = "bootstrap-3.3.6-dist/css/bootstrap.css" rel = "stylesheet">
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">Plethora</a>
</div>
<ul class="nav navbar-nav">
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#"> <img id = "menu" src="nav-icon.png"> </a>
<ul class="dropdown-menu">
<li><a href="#">Manage Interests </a></li>
<li><a href="#">Account Settings </a></li>
<li><a href="#"></a>Email Settings </li>
</ul>
</li>
</ul>
</div>
</nav>
<script type="text/javascript" src="bootstrap-3.3.6-dist/js/bootstrap.js"></script>
</body>`
該html頁面當前文件夾中的文件夾是「bootstrap-3.3.6-dist」嗎?該路徑相對於此頁面而不是您的網站,因此除非此頁面是您的主頁,否則可能存在路徑問題。 – JonSG