您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關如何正確的使用Bootstrap、Dual和Listbox插件,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
基本使用
需要用到的JS和CSS文件位于項目代碼下的dist目錄中,需要將這個目錄中的對應文件放入你的項目里,這一步不贅述
1.引入CSS/JS文件,由于bootstrap-duallistbox是基于bootstrap的,所以要先引入bootstrap相關的css和js
<!-- 加載bootstrap --> <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"> <!-- 加載bootstrap-dualllistbox --> <link rel="stylesheet" href="static/bootstrap-duallistbox/bootstrap-duallistbox.css" rel="external nofollow" > <script src="static/bootstrap-duallistbox/jquery.bootstrap-duallistbox.js"></script>
1.加載duallistbox插件
<select class="form-control" multiple="multiple" name="groups" size="10"> <option value="1">GroupA</option> <option selected value="2">GroupB</option> <option value="3">GroupC</option> <option value="4">GroupD</option> <option selected value="5">GroupE</option> <option value="6">GroupF</option> <option value="7">GroupG</option> </select> <script> var selectorx = $('select[name="groups"]').bootstrapDualListbox(); </script>
1.完成以上兩步可以看到頁面效果如下
非常簡單,到這里已經可以正常使用這個控件了,更多的花樣接著往下看
配置說明
整個界面為英文顯示,有默認提示,如果你想將提示改為中文或添加自定義的提示內容,那么可以通過如下配置
var selectorx = $('select[name="groups"]').bootstrapDualListbox({ nonSelectedListLabel: '未選擇的組', selectedListLabel: '已選擇的組', filterTextClear: '展示所有', filterPlaceHolder: '過濾搜索', moveSelectedLabel: "添加", moveAllLabel: '添加所有', removeSelectedLabel: "移除", removeAllLabel: '移除所有', infoText: '共{0}個組', infoTextFiltered: '搜索到{0}個組 ,共{1}個組', infoTextEmpty: '列表為空', });
以上配置都比較簡單,對照中文就能知曉意思,不做過多解釋,另外有幾個支持的參數說明如下:
infoText: 除了設置字符串外還可設置為false,當設置為false時可隱藏這段信息
showFilterInputs: 默認為true,是否顯示filter過濾框
moveOnSelect: 默認為true,點擊便會變更選項到對應的選擇框內,如果設置為false則會在出現moveSelected的箭頭需要點擊箭頭或者雙擊選項后才能變更選項到對應的選擇框
nonSelectedFilter: 未選中的默認過濾規則,可以配置為OPS-COFFEE-A則未選中的框內只會顯示OPS-COFFEE-A
selectedFilter: 已選中的默認規則,與noSelectedFilter類似
使用進階
獲取已選擇的值
selectorx.val()
獲取select插件對象
selectorx.bootstrapDualListbox('getContainer')
刷新插件元素用戶界面
selectorx.bootstrapDualListbox('refresh');
刪除bootstrap-duallistbox插件,恢復select原樣
selectorx.bootstrapDualListbox('destroy');
動態添加select的option
selectorx.append('<option value="9" selected>ops-coffee.cn</option>'); selectorx.bootstrapDualListbox('refresh');
上述就是小編為大家分享的如何正確的使用Bootstrap、Dual和Listbox插件了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。