//加载城市function loadArea_pep() { $.ajax({ url: "/xmlFile/crty.xml", success: function (result) { var item = ""; $(result).find("State").each(function () { item += "" })//end each $("#WordAddersMax").html(item); } })// end ajax}//加载地区function loadCityat_pep(parentid) { $.ajax({ url: "/xmlFile/crty.xml", success: function (result) { var item = ""; $(result).find("State").each(function () { if ($(this).attr("Code") == parentid) { $(this).find("City").each(function () { item += ""; })// each end } })//end each $("#WordAddersMin").html(item); } })// end ajax}
XML文档如