大体思路是这样的:为了不让先前的页面刷新,我用iframe潜入了一个二级子页面,用来读取数据库中的数据,最后把想要的数据传递给父级页面,完成数据的选择和转移。 主要程序代码如下(部分代码有改动,但不影响功能): 父页面reg.html: 子页面city.php: <script> <BR>function goto(n){ <BR>this.location.href=”city.php?sh_id=”+n; <BR>} <BR></script> 请选择所在省市 include_once(”db.php”); $sql=”select * from province order by sh_id asc”; $result=mysql_query($sql); while($row=mysql_fetch_assoc($result)){ ?> ” if($_GET[”sh_id”]==$row[”sh_id”]){echo 'selected=”selected”‘;}?>> echo $row[”sh_name”];?> } ?> 选择你所在的城市 if(!empty($_GET[”sh_id”])){ //echo “ok”; $sql=”select * from city where sh_id=”.$_GET[”sh_id”].” order by city_id asc”; $result=mysql_query($sql); while($row=mysql_fetch_assoc($result)){ ?> ”> echo $row[”city_name”];?> } } ?>
http://www.bkjia.com/PHPjc/319018.html www.bkjia.com true http://www.bkjia.com/PHPjc/319018.html TechArticle 大体思路是这样的:为了不让先前的页面刷新,我用iframe潜入了一个二级子页面,用来读取数据库中的数据,最后把想要的数据传递给父级...
Déclaration: Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn