AJAX請求資料到select2中
阿新 • • 發佈:2019-01-24
$.post()
方法使用 HTTP POST 請求從伺服器載入資料。
$(selector).post(URL,data,function(data,status,xhr),dataType)
引數 | 描述 |
---|---|
URL | 必需。規定將請求傳送到哪個 URL。 |
data | 可選。規定連同請求傳送到伺服器的資料。 |
function(data,status,xhr) |
可選。規定當請求成功時執行的函式。 額外的引數:
|
dataType |
可選。規定預期的伺服器響應的資料型別。 預設地,jQuery 會智慧判斷。 可能的型別:
|
示例:
呼叫:getDeviceRolenameList($("select2"),"資料","函式");function getDeviceRolenameList(selet,deviceRoles,callback){ $.post("URL",function(json){ //debugger; var resultList = json.resultList; var optionHtml = ""; deviceRoleArray = deviceRoles.split(","); console.log(deviceRoleArray); for(var i in resultList){ var id = resultList[i].id; var name = resultList[i].name; var selected = ""; for(var j in deviceRoleArray){ if(id == deviceRoleArray[j]&&deviceRoleArray[j]!=""){ selected = "selected"; } } optionHtml += "<option value='"+id+"' "+selected+">"+name+"</option>"; } $(selet).html(optionHtml); $(selet).select2({ placeholder: "選擇裝置角色", allowClear: true, escapeMarkup: function (m) { return m; } }); if(callback){ callback(); } }); }