我有这个列表框从数据库加载项目现在我需要第一个项目在加载时保持选中状态,请帮助。我在 jquery 中尝试过,但这没有帮助。
@model proj.Models.ListboxViewModel
@Html.ListBoxFor( m=> m.resourcename,Model.resourcename, new { @class = "resList",style="height: 121px;"})
<script>
$(function () {
$("select[name='resourcename']").removeAttr('multiple');
$("select[name='resourcename']").attr('size', '8');
// $("#resourcename").find("option").attr("selected", '1'); // this is not working
});
</script>