Bootstrap 下拉框带搜索组件

Bootstrap 下拉框带搜索组件

html代码
data-live-search=“true” 属性必加

js代码

 $(function () {
 		//初始化select
        $("#userName").selectpicker({
            'selectedText': 'cat'
        });
    })

查询出所有用户绑定到select下的option

    $.ajax({
        url:'/system/user/listUser.json',
        type:'get',
        dataType:'json',
        success:function(d){
            if(d.state=="success"){
                var html ="";
                $.each(d.date,function (i,v) {
                    html+=''
                })
                $("#smsUserForm [name=name]").html(html);
                //重新加载一遍select
                $("#smsUserForm [name=name]").selectpicker('refresh');
                
            }
        }
    })

运行效果:

Bootstrap 下拉框带搜索组件_第1张图片

Bootstrap 下拉框带搜索组件_第2张图片

你可能感兴趣的:(web前端)