Bootstrap 按钮不工作(点击时不打开)
Bootstrap button not working (not opening when clicking)
下面是我使用 Bootstrap 的代码片段,其中包含一个下拉按钮。知道为什么它不起作用吗? (当我点击它时,它什么也打不开)。
我看到了类似的帖子here and here。但是 none 的建议解决方案解决了我的问题。
<html>
<head>
<title>Bootstrap 3 </title>
<link href ="css/bootstrap.css" rel = "stylesheet">
<link href ="css/bootstrap.min.css" rel = "stylesheet">
<link href ="css/bootstrap-theme.min.css" rel = "stylesheet">
<link href ="css/styles.css" rel = "stylesheet">
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<!-- Single button -->
<div class="btn-group">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-expanded="false">
Action <span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
</body>
</html>
无法识别 jquery.js 文件。请更改此
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
到
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
下面是我使用 Bootstrap 的代码片段,其中包含一个下拉按钮。知道为什么它不起作用吗? (当我点击它时,它什么也打不开)。
我看到了类似的帖子here and here。但是 none 的建议解决方案解决了我的问题。
<html>
<head>
<title>Bootstrap 3 </title>
<link href ="css/bootstrap.css" rel = "stylesheet">
<link href ="css/bootstrap.min.css" rel = "stylesheet">
<link href ="css/bootstrap-theme.min.css" rel = "stylesheet">
<link href ="css/styles.css" rel = "stylesheet">
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<!-- Single button -->
<div class="btn-group">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-expanded="false">
Action <span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
</body>
</html>
无法识别 jquery.js 文件。请更改此
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
到
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>