我想在下拉列表中预先选择某个选项,并希望使用 HTML 中的“selected”参数来选择它。这可能吗?
<option value="@cat.ID"
@if(cat.ID == 2){
@: selected );
}
>@cat.Category</option>