php 省市县 三级联动菜单 问题请教广大网友
目前使用的php+mysqlsmarty模板:我进入首页后查询出省级。jquery得到所点击的省的ID。使用$.post把省一级的id传到php查询出市一级。我觉得这个逻...
目前使用的 php+mysql smarty模板 :我进入首页后 查询出省级。jquery得到所点击的省的ID。使用$.post把省一级的id传到php查询出市一级。我觉得这个逻辑没得问题哈,你们觉得喃?,那么问题来了。这个根据省id查出来的市的数组。怎么 拼接成一个<select><option></option></select>返回到html页面???老是拼不对啊。。或者还有什么更好的办法吗?? 是不是有点罗嗦???分也没了。都是抽奖抽完了。好心人解答哈塞。
展开
展开全部
<?php
/***
根据省的id 选择对应的城市
****/
$id = $_GET["id"];
$link = mysql_connect("localhost","root","root");
mysql_query("set names utf8");
mysql_select_db("hello",$link);
$sql = "select * from areas where pid={$id}";
$result = mysql_query($sql);
?>
<option value="-1">请选择市</option>
<?php
while($rs = mysql_fetch_assoc($result)){
?>
<option value="<?php echo $rs["id"]?>"><?php echo $rs["name"]?></option>
<?php
}
?>
拼接的页面大致这样
$("#pro").change(function(){
//$tcId=$(this).val();
$.ajax({
type:"GET",
url:"city.php?random="+Math.random()+"&tcId="+$(this).val(),
dataType:"html",
success:function(data){
$("#city").html(data);
}
})
}) 我的jquery是这样写的 你看看吧,应该都差不多的 检查下拼接的输出
/***
根据省的id 选择对应的城市
****/
$id = $_GET["id"];
$link = mysql_connect("localhost","root","root");
mysql_query("set names utf8");
mysql_select_db("hello",$link);
$sql = "select * from areas where pid={$id}";
$result = mysql_query($sql);
?>
<option value="-1">请选择市</option>
<?php
while($rs = mysql_fetch_assoc($result)){
?>
<option value="<?php echo $rs["id"]?>"><?php echo $rs["name"]?></option>
<?php
}
?>
拼接的页面大致这样
$("#pro").change(function(){
//$tcId=$(this).val();
$.ajax({
type:"GET",
url:"city.php?random="+Math.random()+"&tcId="+$(this).val(),
dataType:"html",
success:function(data){
$("#city").html(data);
}
})
}) 我的jquery是这样写的 你看看吧,应该都差不多的 检查下拼接的输出
追问
"".foreach($rows as $val){.
"".echo $val.['area_name'].""."".}
怎么拼接?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询