Don't Worry 别让过错,变成了错过。别让懦弱,让你变得堕落。
别让阔绰,显得你很做作。或少或多,人都有做错过。

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);

 

 

posted @ 2019-06-05 15:41  大碗宽面呀  阅读(2584)  评论(0编辑  收藏  举报