bootstrap-select使用注意事项
作者:互联网
bootstrap-select,使用多选时注意,
1,初始化多选内容
$("#id").selectpicker("refresh")
$("#id").selectpicker("render")
2设置多选款默认内容,
要设置多选数据的code值,设置name不生效
然后要$("#id").selectpicker("refresh")一下,否则不会更新ui
插入元素的时候最好不要在循环里写$("#id").append('')
写成 var html= ""
循环里 html+= ' <option value="'+data[i].code+'">'+data[i].name+'</option> '
循环外
$("#id").append(html)
标签:name,bootstrap,selectpicker,html,append,注意事项,id,select 来源: https://www.cnblogs.com/lishuang2243/p/14051656.html