萬盛學電腦網

 萬盛學電腦網 >> 腳本專題 >> javascript >> jquery讀取xml文件實現省市縣三級聯動的方法

jquery讀取xml文件實現省市縣三級聯動的方法

   本文實例講述了jquery讀取xml文件實現省市縣三級聯動的方法。分享給大家供大家參考。具體如下:

  頁面代碼如下:

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <base href="<%=basePath%>"> <title>My JSP 'city.jsp' starting page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <!-- <link rel="stylesheet" type="text/css" href="styles.css"> --> <script type="text/javascript" src="js/jquery-1.7.2.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ //省 $.ajax({url:"xml/City.xml", success:function(xml){ $(xml).find("province").each(function(){ var t = $(this).attr("name");//this-> $("#DropProvince").append("<option>"+t+"</option>"); }); } }); //市 $("#DropProvince").change(function(){ $("#sCity>option").remove(); $("#sArea>option").remove(); var pname = $("#DropProvince").val(); $.ajax({url:"xml/City.xml", success:function(xml){ ///查找<province>下的所有第一級子元素(即城市) $(xml).find("province[name='"+pname+"']>city").each(function(){ var city = $(this).attr("name");//this-> $("#sCity").append("<option>"+city+"</option>"); }); ///查找<city>下的所有第一級子元素(即區域) var cname = $("#sCity").val(); $(xml).find("city[name='"+cname+"']>area").each(function(){ var area = $(this).attr("name");//this-> $("#sArea").append("<option>"+area+"</option>"); }); } }); }); //區 $("#sCity").change(function(){ $("#sArea>option").remove(); var cname = $("#sCity").val(); $.ajax({url:"xml/City.xml", success:function(xml){ ///查找<city>下的所有第一級子元素(即區域) $(xml).find("city[name='"+cname+"']>area").each(function(){ var area = $(this).attr("name");//this-> $("#sArea").append("<option>"+area+"</option>"); }); } }); }); }); </script> </head> <body> <form id="form1"> <div> <select id="DropProvince" style="width:100px;"> <option>請選擇</option> </select> <select id="sCity" style="width:100px;"> <option>請選擇相應市</option> </select> <select id="sArea" style="width:100px;"> <option>請選擇相應區</option> </select> </div> </form> </body> </html>

  效果圖如下:

  希望本文所述對大家的jQuery程序設計有所幫助。

copyright © 萬盛學電腦網 all rights reserved