我必须有2个下拉菜单,如下所示:
a drop down http://img401.imageshack.us/img401/3786/90550627.jpg
“项目”菜单有两个值,即“服务器”和“切换”。同时,“模型”菜单中的值取决于“项目”菜单中的值。从数据库中调用“模型”菜单中的值。我想要做的是当选择“服务器”时,它会将数据从服务器表调用到模型菜单中,当选择“切换”时,它将从交换机表调用数据。我怎样才能做到这一点?
答案 0 :(得分:2)
让我们举一个简单的例子,我将它用于你想要的相同目的,它完美地运作。
我根据国家/地区下拉列表中的选择使用此填充城市下拉列表,此处您可以将国家/地区视为项目和城市
这是国家/地区下拉列表:
<?php
$countrylist=mysql_query("SELECT * FROM country ORDER BY name ASC");
echo "<select name='country' id='country' onchange=\"reload(this.form)\" title='Country e:g; United Kingdom,Pakistan'><option value='0'>Select Country</option>";
while($clist=mysql_fetch_array($countrylist))
{
echo "<option value='$clist[Name]'>$clist[Name]</option>"."<br/>";
}
echo "</select>";
?>
这是区域下拉列表:
<select name="region" id="region" ></select>
现在创建一个名为crlist.js的单独文件,并将其包含在具有以下代码的页面中:
<script type="text/javascript" src="crlist.js"> </script>
crlist.js的代码:
var request = false;
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
try {
request = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
request = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e2) {
request = false;
}
}
@end @*/
function fillSelect(country,path) {
var url = path+"crlist.php?country=" + country;
request.open("GET", url, true);
request.onreadystatechange = go;
request.send(null);
}
function go() {
if (request.readyState == 4) {
//if (request.status == 200) {
var response = request.responseText;
var list=document.getElementById("region");
for (i = list.length - 1; i>=0; i--) {
list.remove(i);
}
var records=response.split('|');
for (i=1; i<records.length; i++) {
//alert("rcord="+records[i]);
var record=records[i].split('*');
var region=record[0];
//alert("region="+region);
var regionid=record[1];
//alert("regionid="+regionid);
var x=document.createElement('option');
//var y=document.createTextNode(region);
x.text=region;
//x.value=region;
//alert(x.text);
//x.appendChild(y);
//list.appendChild(x);
list.options.add(x);
}
//}
}
}
function initCs(path) {
if (!request && typeof XMLHttpRequest != 'undefined') {
request = new XMLHttpRequest();
}
var country=document.getElementById('country');
country.onchange=function() {
if(this.value!="Select") {
var list=document.getElementById("region");
for (i = list.length - 1; i>=0; i--) {
list.remove(i);
}
//while (list.childNodes[0]) {
//list.removeChild(list.childNodes[0]);
//}
}
fillSelect(this.value,path);
//alert(this.value);
}
//fillSelect(country.value);
}
现在创建一个名为crlist.php的单独文件。
crlist.php的代码:
<?php
require_once 'yourconfigfile.php';
$cname = $_GET['country'];
$query="select ID,Name from city where CountryCode=(select code from country where name='$cname') Order By Name ASC";
$res = mysql_query($query) or die(mysql_error());
while($region = mysql_fetch_array($res)){
echo "<option value='".$region['Name']."'>".$region['Name']."</option>";
}
?>
现在在有下拉列表的页面上添加以下脚本:
<script type="text/javascript" src="crlist.js"> </script>
<script>
$(document).ready(function() {
initCs("");
});
</script>
这是我自己的脚本,我假设你已经创建了国家和地区表。但是你需要根据你的数据库结构调整查询和上面的代码。
参考我的回答:Cascade Dropdown List using jQuery/PHP
希望这有帮助。
答案 1 :(得分:0)
你应该有一个ajax调用来更新选择框。
项目选择框上的JavaScript函数调用ajax。
供参考:http://remysharp.com/2007/01/20/auto-populating-select-boxes-using-jquery-ajax/