我想從Twitter Bootstrap中使用一個簡單的下拉按鈕。 但是,它沒有顯示下拉選項。代碼如下,這裏是鏈接到小提琴:http://jsfiddle.net/nunos/DjHyQ/11/Twitter Bootstrap按鈕下拉不下降
編輯:發現問題。我在<head>
中包括bootstrap.js
。正如Twiiter引導程序文檔實際所述,一旦我將該行更改爲<body>
,它就立即生效。我從來沒有想過<head>
或<body>
中包含的腳本有所不同。現在我明白了!
<div class="btn-toolbar" style="margin: 0;">
<div class="btn-group">
<button class="btn btn-primary dropdown-toggle" data-toggle="dropdown">Action <span class="caret"></span></button>
<ul class="dropdown-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>
</div>
..你的小提琴沒有工作,因爲你使用'mootools 1.4.5'導致'TypeError:不能調用未定義的方法'創建',這裏是一個分叉工作版本使用'jquery 1.7.2' http://jsfiddle.net/VG7G7/ – davidkonrad