我正在使用 jQuery 方法开发 Country、State、City,但问题是当 load 事件触发时,change() 也触发了,并且我无法加载 State 下拉列表
$("#SelectCountry").load() {
$.ajax({
url: "../Member/Home.aspx/GetCountryName",
type: "POST",
dataType: 'json',
contentType: 'application/json; charset=utf-8',
data: "{'name': '" + "1" + "'}",
async: false,
success: function (response) {
if (response.d != null) {
$.each(response.d, function (i, response) {
debugger;
$("#SelectCountry").append("<option value=" + response.CountryId + ">" + response.CountryName + "</option>");
});
}
},
error: function (xhr) {}
});
}
$("#SelectCountry").change() {
alert("Select event changed;");
}