bootstrap下拉框多選以及搜索功能


 <div class="form-group">
//多選multiple  搜索data-live-search="true" 單選的話去掉multiple
 <select id="channel_idselect" name="channel_idselect" class="form-control selectpicker" title="全部平台" multiple data-live-search="true"> 
@foreach (erp_channel entity in ((IChannelService)this.ViewBag.IChannelService).GetPlatFormList()) {
<option value="@entity.channel_id">@entity.channel_name</option> }
</div>
//jquery取值

var channel = $("#channel_idselect").val();
channel = (channel == null) ? "" : channel.join(',');
$('#channel_id').val(channel);

 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM