我使用此代码通过 ojit_code 插件将数据插入到 select
元素:
$.ajax({
type: "POST",
url: "ws.asmx/GetEvrakGrup",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (dc, status) {
jsonData = JSON.parse(dc.d);
$("#selectId").select2({
data: jsonData
});
},
error: function () { alert("This is an Error");}
});
在我想在这个选择中设置一个值但它不起作用之后:
$("#selectId").val(81);
最佳答案
试试这个 :
$("#selectId").val(81).trigger('change');
代替
$("#selectId").val(81);
关于javascript - 如何在select2插件中设置选择值-jquery,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38873508/