我使用引導程序2.3.2並希望實現看起來像下拉菜單的元素。有一個在github上的解決方案:https://github.com/silviomoreto/bootstrap-select引導程序選擇不起作用
我的代碼:
<select class="selectpicker">
<option>1</option>
<option>2</option>
</select>
<script type="text/javascript">
$(function() {
$('.selectpicker').selectpicker();
})
</script>
它不工作。但是,當我鍵入
$('.selectpicker').selectpicker();
在控制檯中的Chrome DevTools - 選擇更改下拉,它的工作原理。
得到任何錯誤? –
也許它不起作用,因爲您在加載selectpicker插件之前嘗試執行selectpicker()。你在哪裏包括bootstrap-elect.js? –
沒有錯誤顯示。當文檔準備就緒時,我執行selectpicker,並且此腳本位於頁面底部(在引導選擇之後) –