码迷,mamicode.com
首页 > 其他好文 > 详细

关于select的option为什么动态没有写入

时间:2020-04-07 22:44:22      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:function   split   refresh   append   nbsp   null   lse   app   fun   

 function JizuHao(source) {
            var data = source[0].SYSTEM;
            if (data != null) {
                var arr = data.split(",")
                var ress = "";
                for (i = 0; i < arr.length; i++) {

                    ress += "<option value=\"" + arr[i] + "\">" + arr[i] + "</option>";
                }
                $("#id_select").empty();
                $("#id_select").selectpicker(‘render‘);//添加
                $("#id_select").selectpicker(‘refresh‘);//添加
                $("#id_select").append(ress);
                $("#id_select").selectpicker(‘render‘);
                $("#id_select").selectpicker(‘refresh‘);
            }
            else {
                $("#id_select").empty();
                $("#id_select").selectpicker(‘render‘);
                $("#id_select").selectpicker(‘refresh‘);
            }
        }

 

关于select的option为什么动态没有写入

标签:function   split   refresh   append   nbsp   null   lse   app   fun   

原文地址:https://www.cnblogs.com/yuanmo/p/12656387.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!