我有一个选择框,它根据其他选择框上的选择来填充数据。
我能够填充数据。但是如何在表单编辑过程中选择一个值并执行onchange
事件。即更新。
我难以根据数据库条目进行选择并进行onchange
。我能够做到的只是根据更改从数据库填充数据。
答案 0 :(得分:0)
您可以使用jquery轻松创建它,这是示例:
$('#id_of_your_select').change(function(){
var val = $('#id_of_your_select option').attr('selected', 'selected');
$.post({
url: "your_url",
data: {
value: val; // get the input post of value in server side
},
success: function(result){
// loop a json array and use append function of the jquery on the second select box
}
})
});
我只能这样解释,因为您没有提供任何代码。