}
$('#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;
&nbs