我正在尝试禁用列表框中的多选项,但是当我调用removeAttr('multiple')时,它会将我的列表框变为下拉列表。我不想要下拉列表,我想保留列表框。如何调整才能实现这一目标?感谢。
@Html.ListBox("ListBoxName", new SelectList((IEnumerable<Epic>)ViewData["selectedestimate"], "Id", "Name", "EstimatedTime"), new {@class = "ListBoxClass", @style = "height: 325px;", @id = "epiclistbox"})
<script type="text/javascript">
$(document).ready(function () {
$('select').removeAttr('multiple');
});
答案 0 :(得分:2)
您需要将size
属性设置为SELECT
元素,如下所示:
$(document).ready(function () {
$('select').removeAttr('multiple');
$("select").attr("size", 5);
});