用php+javascript实现二级级联菜单的制作

前端之家收集整理的这篇文章主要介绍了用php+javascript实现二级级联菜单的制作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

大体思路是这样的:为了不让先前的页面刷新,我用iframe潜入了一个二级子页面,用来读取数据库中的数据,最后把想要的数据传递给父级页面,完成数据的选择和转移。 主要程序代码如下(部分代码有改动,但不影响功能):
页面reg.html: <iframesrc=”city.php”width=”300″height=”22″frameborder=”0″scrolling=”no”><inputname=”city”type=”hidden”id=”city”value=”"/> 子页面city.PHP: <scriptlanguage=”javascript”type=”text/javascript”>
functiongoto(n){
this.location.href=”city.PHP?sh_id=”+n;
}
<selectname=”sh”onchange=”goto(this.value)”>

<?PHP
include_once(”db.PHP”);
$sql=”selectfromprovinceorderbysh_idasc”;
$result=MysqL_query($sql);
while($row=MysqL_fetch_assoc($result)){
?>
<optionvalue=”<?echo$row[”sh_id”];?>”<?if($_GET[”sh_id”]==$row[”sh_id”]){echo'selected=”selected”‘;}?>><?echo$row[”sh_name”];?>
<?PHP
}
?>

<selectname=”city”onchange=”parent.document.getElementById('city').value=this.value”>

<?PHP
if(!empty($_GET[”sh_id”])){
//echo“ok”;
$sql=”select
fromcitywheresh_id=”.$_GET[”sh_id”].”orderbycity_idasc”;
$result=MysqL_query($sql);
while($row=MysqL_fetch_assoc($result)){
?>
<optionvalue=”<?echo$row[”city_name”];?>”><?echo$row[”city_name”];?>
<?PHP
}
}
?>

原文链接:https://www.f2er.com/php/29661.html

猜你在找的PHP相关文章