我正在尝试创建两个下拉列表:下拉列表A列出一个国家/地区。下拉列表B列出了一个城市。列表B最初为空,而列表A由国家/地区填充。用户可以选择一个国家/地区,从而导致列表B自动列出列表A中的城市。这些城市自然会来自数据库,因此这不是我的问题的目标。我的问题是我如何绑定列表B依赖于列表A.我花了几个小时研究答案并尝试各种jquery和javascript方法。我一直试图让List B通过使用List A的更改方法来响应List A,但到目前为止,似乎没有任何工作,也无法在添加测试方面触发List B的响应值。
我该怎么做?
答案 0 :(得分:2)
这是工作小提琴:Relative Drop-down
$(function() {
var cities = {
'INDIA': ['Delhi', 'Mumbai', 'Bangalore', 'Ahmedabad'],
'USA': ['London', 'Los Angeles', 'Austin', 'New York']
};
var hashFunc = function(country, city){
return country + "." + city;
};
//The form
var form = new Backbone.Form({
schema: {
country: { type: 'Select', options: ['INDIA', 'USA'] },
city: { type: 'Select', options: cities.INDIA},
}
}).render();
form.on('country:change', function(form, countryEditor) {
var country = countryEditor.getValue(),
newOptions = cities[country];
form.fields.city.editor.setOptions(newOptions);
});
//Add it to the page
$('body').append(form.el);
});
答案 1 :(得分:0)
选择任何选项后,您可以根据其值为另一个选项创建动态选项。
$('#A').change(function() {
if($('#A:selected').val() == "India"){
$("<option></option>",
{value: "Surat", text: "Surat"})
.appendTo('#B');
}
});
答案 2 :(得分:0)
$('#select1').change(function(){
callAjax(this.value);
});
function callAjax(value1)
{
//here write the code for ajax
}
答案 3 :(得分:0)
很难回答数据库方案,但这里有。
假设您的数据库看起来像
Countrys
+--------------+
| New Zealand |
+--------------+
| Australia |
+--------------+
| India |
+--------------+
Towns
Country Town
+--------------+---------------+
| NZL | Auckland |
+--------------+---------------+
| NZL | Wellington |
+--------------+---------------+
| NZL | Christchurch |
+--------------+---------------+
| AU | Sydney |
+--------------+---------------+
| AU | Wagawaga |
+--------------+---------------+
| AU | Brisbane |
+--------------+---------------+
| IN | Mumbai |
+--------------+---------------+
......等等
首先选择
<select onchange ="town()" id="country">
<option value = "NZ">New Zealand</option>
<option value = "AU">Australia</option>
<option value = "IN">India</option>
</select>
第二个
<select id="towns"></select>
的Javascript
function town()
{
var town = $('#country').val()
$.ajax({
type: "POST",
url: "http://yourserver/rpc.php",
data: { method: 'get_towns'},
dataType: "json",
timeout: 10000, // in milliseconds
success: function(data) {
$("#towns".html(data.towns)
},
error: function(request, status, err) {
if(status == "timeout") {
$.ui.hideMask();
alert('This is taking too long. You could try again now, or wait and try again later.');
}
}
});
}
从你的数据库中返回json中的城镇