1
https://github.com/harvesthq/chosen/releases
我結合從阿賈克斯web服務數據使用jQuery的選擇,它似乎不是working.Data沒有選擇加載。
$(".cb_bu_info").chosen({
no_results_text: "Oops, nothing found!",
width: "50%",
source: function() {
$.ajax({
type: "POST",
url: "../BUS/WebService.asmx/LIST_BU",
contentType: "application/json; charset=utf-8",
dataType: "json",
//beforeSend: function() { $('ul.cb_bu_info').empty(); },
success: function (data) {
$("#cb_bu_info").html('');
$.each($.parseJSON(data.d), function (idx, obj) {
$("#cb_bu_info").append('<option value="' + obj.BU_ID + '">' + obj.BU_NAME + '</option>');
});
},
error: function (data) {
console.log(data.d);
alert("An error occurred !");
}
});
}
});
<select class="cb_bu_info"></select>
謝謝你們。
你沒有包括jQuery腳本? – guradio
jquery和另一個我與$衝突? – guradio
尊敬的@Pekka,是的,我用過jquery。 –