我正在使用jQuery方法開發Country,State,City,但是問題是當load事件觸發,也改變()被觸發,並且我無法加載狀態下拉關於加載事件,選擇更改事件觸發,jQuery
$("#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;");
}
如果你的代碼格式正確,好的東西就會發生在你身上! :) – Trufa 2013-02-11 16:07:40