項目使用BootStrap設置select時,不能動態加載,使用以下方法可以解決。
//獲得全部訂單信息(訂單ID,訂單名稱)function GetAllOrders(obj) { $.ajax({  type: 'Get',  url: '/OrderTypeSetting/GetAllCanUseOrderTypes/',  dataType: "Json",  success: function (data) {   if (!data.flag) {        $.each(data, function (i, n) {     $("#" + obj).append(" <option value=/"" + n.os_id + "/">" + n.os_name + "</option>");    })    $("#" + obj).selectpicker('refresh');       }  } })}//獲得全部訂單信息(訂單ID,訂單名稱)function GetAllOrders(obj) { $.ajax({  type: 'Get',  url: '/OrderTypeSetting/GetAllCanUseOrderTypes/',  dataType: "Json",  success: function (data) {   if (!data.flag) {    var opstr = "";    $.each(data, function (i, n) {       opstr += " <option value=/"" + n.os_id + "/">" + n.os_name + "</option>";    })        var myobj = document.getElementById(obj);    if (myobj.options.length == 0) {     $("#" + obj).html(opstr);     $("#" + obj).selectpicker('refresh');    }   }  } })}參考資料:
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持武林網。
新聞熱點
疑難解答