本文實例為大家分享了Ajax實現城市二級聯動的具體代碼,供大家參考,具體內容如下
這是Ajax實現城市二級聯動系列文章第三篇,把之前2篇整合在一起
1、html
<select id="province"> <option>請選擇</option> </select> <select id="city"> <option>請選擇</option> </select>
2、javascript
//創建獲取ajax核心對象的函數 function getXhr(){ var xhr = null; if(window.XMLHttpRequest){ xhr = new XMLHttpRequest(); }else{ xhr = new ActiveXObject("Microsoft.XMLHttp"); } return xhr; } var xhr = getXhr(); // 第一次執行Ajax異步請求 - 省份 window.onload = function(){ xhr.open("get","finaly.php?state=1"); xhr.send(null); xhr.onreadystatechange = function(){ if(xhr.readyState==4&&xhr.status==200){ var data = xhr.responseText; // 將字符串轉換為數組 var provinces = data.split(","); // 遍歷數組 for(var i=0;i<provinces.length;i++){ // 創建option元素添加到id為province元素上 var option = document.createElement("option"); var text = document.createTextNode(provinces[i]); option.appendChild(text); var province = document.getElementById("province"); province.appendChild(option); } } } }; // 第二次執行Ajax異步請求 - 城市 var province=document.getElementById("province"); province.onchange = function(){ var city = document.getElementById("city"); var opts = city.getElementsByTagName("option"); for(var z=opts.length-1;z>0;z--){ city.removeChild(opts[z]); } if(province.value != "請選擇"){ xhr.open("post","finaly.php"); xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded"); xhr.send("state=2&province="+province.value); xhr.onreadystatechange = function(){ if(xhr.readyState==4&&xhr.status==200){ var data = xhr.responseText; var cities = data.split(","); for(var i=0;i<cities.length;i++){ var option = document.createElement("option"); var text = document.createTextNode(cities[i]); option.appendChild(text); city.appendChild(option); } } } } };
3、finaly.php
<?php // 接收客戶端發送的請求數據 - state $state = $_REQUEST['state']; // 判斷$state的值 if($state == 1){// 獲取省份 echo '山東省,遼寧省,吉林省'; }else{// 獲取城市 $province = $_POST['province']; switch ($province){ case '山東省': echo '青島市,濟南市,威海市,日照市,德州市'; break; case '遼寧省': echo '沈陽市,大連市,鐵嶺市,丹東市,錦州市'; break; case '吉林省': echo '長春市,松原市,吉林市,通化市,四平市'; break; } } ?>
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持。