如下所示:
$(document).ready(function(){ $.ajax({ type:"GET", url:"city.xml", dataType:"xml", error:function(){alert("读取失败!")}, success:function(xml){ $(xml).find("province").each(function(){ $("<option></option>") .attr("value",$(this).attr("name")) .html($(this).attr("name")) .appendTo("#slt_province") }) } }); $("#slt_province").change(function(){ $("#slt_city").empty(); $.ajax({ type:"GET", url:"city.xml", dataType:"xml", success:function(xml){ var city = $(xml).find("province[name='" + $("#slt_province").val() + "']").attr("cities").split(" "); $.each(city,function(i){ $("<option></option>") .attr("value",city[i]) .html(city[i]) .appendTo("#slt_city") }) } }) })})
city.xml文件
<?xml version="1.0" encoding="gb2312"?><china> <province name="全选" cities="全选"/> <province name="安徽" cities="全选 安庆 蚌埠 巢湖 池州 滁州 阜阳 合肥 淮北 淮南 黄山 六安 马鞍山 宿州 铜陵 芜湖 宣城 亳州"/> <province name="北京" cities="全选 北京"/>。。。。。。。。</china> |