我试图在我的列表框中禁用多选,但是当我调用 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');
});