}
$('#Select1').append(ping);
}
})
$('#Select1').change(function () {
//第二次選時要記得清空市和縣中的內容
$('#Select2 option:gt(0)').remove();
$('#Select3 option:gt(0)').remove();
//在省的改變事件里綁定下一個下來列表(要失掉省的id)
$.ajax({
type: "post",
contentType: "application/json",
url: "WebService1.asmx/loadcity",
data: "{fatherid:'" + $('#Select1 option:selected').val() + "'}",
success: function (result) {
var str2;
for (var i = 0; i result.d.length; i++) {
str2 += "option value=" + result.d[i].cityID + ">";
str2 += result.d[i].cityname;
str2 += "/option>";
}
$('#Select2').append(str2);
}
})
})
$('#Select2').change(function () {
$('#Select3 option:gt(0)').remove();
$.ajax({
type: "post",
contentType: "application/json",
url: "WebService1.asmx/loadarea",
data: "{fatherid:'" + $('#Select2 option:selected').val() + "'}",
success: function (result) {
var str3;
for (var i = 0; i result.d.length; i++) {
str3 += "option value=" + result.d.areaID + ">";
str3 += result.d[i].areaname;
str3 += result.d[i].father;
}
$('#Select3').append(str3);
}
})
})
})
/script>
/head>
body>
省:
select id="Select1">
option>--請選擇--/option>
/select>
市:
select id="Select2">
option>--請選擇--/option>
/select>
縣:
select id="Select3">
option>--請選擇--/option>
/select>
/body>
/html>
webservice:
DAL--area
}