我有三个下拉菜单。根据在第一个下拉列表中选择的选项,我使用javascript填充第二个下拉列表。
首次下拉
<select id="continent" onchange="secondMenu(this,'country')" >
<option value="1">Asia</option>
<option value="2">Europe</option
</select>
第二次下拉
<select id="country" >
</select>
第三次下拉
<select id="population" >
</select>
我的剧本
<script>
function secondMenu(ddl1,ddl2){
var as=new Array('Japan','China');
var eu=new Array('Germany','France');
switch (ddl1.value) {
case 1:
document.getElementById(ddl2).options.length = 0;
for (i = 0; i < as.length; i++) {
createOption(document.getElementById(ddl2), as[i], as[i]);
}
break;
case 2:
document.getElementById(ddl2).options.length = 0;
for (i = 0; i < eu.length; i++) {
createOption(document.getElementById(ddl2), eu[i], eu[i]);
}
break;
}
function createOption(ddl, text, value) {
var opt = document.createElement('option');
opt.value = value;
opt.text = text;
ddl.options.add(opt);
}
</script>
现在根据第二个下拉列表中选择的选项,我想运行一个mysql查询并填充第三个下拉列表。有关如何填充第三个下拉列表的任何帮助。
答案 0 :(得分:1)
使用Ajax,我在我的一个项目中做了类似的事情,所以这是一个例子:
$('#product_series_text', $('#product_form')).change(function() {
var $series = $(this).val();
// Ajax request to get an updated list of product models
$.getJSON(
"<?php echo url::site('product/get_model_like_series'); ?>",
{ series: $series },
function(data) {
$("#product_model",
$('#product_form')).form_utils('replaceOptions', data);
});
});
那里有很多jQuery,但想法是在一个下拉列表中有一个eventlistener用于更改,然后触发Ajax查询(轮询数据库并发回Json结果列表),然后创建一个我们的下拉列表(只是选项会随着下拉列表已经存在而更改)
答案 1 :(得分:1)
使用AJAX向您的服务器发送请求并运行mysql查询。假设您没有使用JQuery,纯AJAX看起来像这样:
if (window.XMLHttpRequest) {
xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function () {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
var data = xmlhttp.responseText;
//populating your select
}
}
xmlhttp.open("GET", "yourmethodpath", true);
xmlhttp.send();
}