溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何在bootstrap中使用selectpicker下拉框

發(fā)布時間:2021-03-29 15:53:19 來源:億速云 閱讀:244 作者:Leah 欄目:web開發(fā)

如何在bootstrap中使用selectpicker下拉框?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

使用方法如下

1、首先需要引入的css和js:

    bootstrap.css
    bootstrap-select.min.css
    jquery-1.11.3.min.js
    bootstrap.min.js
    bootstrap-select.min.js

2、js代碼如下:

$(function() { 
  $(".selectpicker").selectpicker({ 
   noneSelectedText : '請選擇'//默認(rèn)顯示內(nèi)容 
  });
//數(shù)據(jù)賦值 
var select = $("#slpk"); 
select.append("<option value='1'>香蕉</option>"); 
select.append("<option value='2'>蘋果</option>"); 
select.append("<option value='3'>橘子</option>"); 
select.append("<option value='4'>石榴</option>"); 
select.append("<option value='5'>棒棒糖</option>"); 
select.append("<option value='6'>桃子</option>"); 
select.append("<option value='7'>陶子</option>");
//初始化刷新數(shù)據(jù) 
 $(window).on('load', function() { 
  $('.selectpicker').selectpicker('refresh'); 
 }); 
});

3、jsp內(nèi)容:

<select id="slpk" class="selectpicker" data-live-search="true" multiple></select>

設(shè)置multiple時為多選,data-live-search="true"時顯示模糊搜索框,不設(shè)置或等于false時不顯示。

4、其他方法:

獲取已選的項(xiàng):

var selectedValues = [];  
slpk:selected").each(function(){ 
selectedValues.push($(this).val()); 
});

選擇指定項(xiàng)(編輯回顯使用):

        單選:$('.selectpicker').selectpicker('val', ‘列表id');

        多選:var arr=str.split(','); $('.selectpicker').selectpicker('val', arr);

5、附上我的源碼,下拉數(shù)據(jù)通過ajax從后臺獲?。?/strong>

$(function() { 
  $(".selectpicker").selectpicker({ 
   noneSelectedText : '請選擇' 
  }); 
  $(window).on('load', function() { 
   $('.selectpicker').selectpicker('val', ''); 
   $('.selectpicker').selectpicker('refresh'); 
  }); 
  //下拉數(shù)據(jù)加載 
  $.ajax({ 
   type : 'get', 
   url : basePath + "/lictran/tranStation/loadRoadForTranStationDetail", 
   dataType : 'json', 
   success : function(datas) {//返回list數(shù)據(jù)并循環(huán)獲取 
    var select = $("#slpk"); 
    for (var i = 0; i < datas.length; i++) { 
     select.append("<option value='"+datas[i].ROAD_CODE+"'>" 
       + datas[i].ROAD_NAME + "</option>"); 
    } 
    $('.selectpicker').selectpicker('val', ''); 
    $('.selectpicker').selectpicker('refresh'); 
   } 
  }); 
 });

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI