三级联动 做出来了 高兴ing

今天学习的三级联动   大家可以参考一下啊
ajax很重要哦

 

 

ajax.php

 

mysql_connect('localhost','root','');

mysql_select_db("china");

mysql_query("set names utf8");

//获得用户点击的值以及应该显示的表明

$val = $_POST['val'];

$table = $_POST['table'];

if($table == 't_province'){

//查询所有的省

$sql = "select ProName from $table order by ProSort";

$result = mysql_query($sql);

$rows = array();

while($row = mysql_fetch_row($result)){

echo "<option>$row[0]</option>";

}

}else if($table =='t_city'){

//已知 ProName 查询对应的市的名字

$sql = "select CityName from t_city where ProID=(select ProID from t_province where ProName = '$val')";

$result = mysql_query($sql);

$rows = array();

while($row = mysql_fetch_row($result)){

echo "<option>$row[0]</option>";

}

}else if($table =='t_district'){

//已知 CityName 查询对应的县的名字

$sql = "select DisName from t_district where CityID=(select CityID from t_city where CityName = '$val')";

$result = mysql_query($sql);

$rows = array();

while($row = mysql_fetch_row($result)){

echo "<option>$row[0]</option>";

}

}

 

 

 

 

 

index.php  
<meta charset="utf-8">
<head>
<script>
function getArea(val,table){
   var xhr;
 if(window.ActiveXObject){
 xhr = new ActiveXObject("Microsoft.XMLHTTP");
 }else if(window.XMLHttpRequest){
 xhr = new XMLHttpRequest();
 }
 var url = "ajax.php";
 xhr.open("POST",url,true);
 xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
 xhr.onreadystatechange=callback;
 xhr.send("val="+val+"&table="+table);
 function callback(){
         if(xhr.readyState==4){
      if(xhr.status==200){
     document.getElementById(table).innerHTML = xhr.responseText;
   }
   }
  
}
 }
</script>
</head>
<body οnlοad="getArea('','t_province')">
<select id="t_province" οnclick="getArea(this.value,'t_city')"></select>省
<select id="t_city" οnclick="getArea(this.value,'t_district')"></select>市
<select id="t_district"></select>县
</body>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值