我使用以下语法显示下拉菜单:
@Html.DropDownListFor(model => model.Country, new SelectList(Model.CountryOptions, "Key", "Value"))
我有一个基于复选框禁用 dd 的 Jquery 语句:
$(document).ready(function () {
$("#lockRecord").click(function () {
if ($(this).attr('checked')) {
$("#Country").attr('disabled', true);
} else {
$("#Country").attr("disabled", false);
}
})
});
但是,当它被提交时,该值返回为 null。已尝试只读,但它不适用于下拉列表。
有什么建议么?