我的脚本如下。我通过 $.getJSON()获得了 PersonList ,我想使用 Jquery-chosen 并排显示 PersonList 中的所有元素。但只显示最后一项。
感谢您的帮助。
$(document).ready(function () {
$("#raporNo").on('change', function () {
var yId = $(this).val();
$.getJSON("../Ekranlar/GorevlendirilenAdliBilUzmanlariGetir", { xId: yId },
function (PersonList) {
$("#chosenDropDown2").empty();
$.each(PersonList, function (index, itemData) {
$("#chosenDropDown2").append("<option>" + itemData.Text + "</option>");
$("#chosenDropDown2").val(itemData.Text);
$("#chosenDropDown2").trigger("chosen:updated");
});
});
});
});