我需要使用另一个下拉列表绑定@html.dropdownlist()。
例如:ddl1:字母和数字。
默认页面加载
dd1:选择案例和dd2:选择dd1
使用mvc3格式
答案 0 :(得分:1)
我认为你需要jquery才能做到这一点。
$("#Dropdown1").change(function () {
var value= $("#Dropdown").val();
if(value=="Letters")
{
populatedropdown(listofletters);
}
else if(value=="Numbers")
{
populatedropdown(listofnumbers);
}
});
function populatecities(list) {
$("#dropdown2").html('');
$.each(list, function (id, option) {
select.append($('<option></option>').val(id).html(option));
});
}
我认为这样做会......