2
我有像國家/州和城市的下拉鍊。是否有任何方法可以等到下降人口繼續進行下去?像第一次加載的國家,然後根據選擇的國家,然後加載狀態,並同市....加載國家/州/市
function populateLists(listType) {
// on success do this:
$.ajax({
type:"POST",
url:"Wizard_Using_PageMethod.aspx/GetCountry",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType:"json"}
});
[WebMethod]
public static CountryList GetCountry()
{
CountryList country = new CountryList();
///go to db and get the data
return country;
}