作者:francesxyb341_1948 | 来源:互联网 | 2014-06-17 16:54
下面的两个文件copy到同一个文件下,通过web路径访问index.html看看吧,这个是通过iframe来实现的连动更新,list.php目前的内容比较简单,你看通过list.php来进行数据库查询,然后显示出查询的结果列表。
index.html
- <body>
- <form name="myfrm">
- <select name="mlist" onchange="changes();">
- <option value="0">请选择...option>
- <option value="北京">北京option>
- <option value="通化">通化option>
- select>
- <select name="slist">
- select>
- <iframe id="frame" src="list.php?city=" style="display:none;">iframe>
- <script language="Javascript">
- function changes(){
- frame.location.href = "list.php?city=" document.myfrm.mlist.value;
- }
- script>
- form>
- body>
list.php
- $data = array("北京"=>array("小强","旺财","小强他爹"),
- "通化"=>array("小温","小宋","他们儿子"),);
-
- $city = $_GET["city"];
-
- $result = $data[$city];
-
- $str = "";
-
- echo $str;
- ?>