给出以下MVC5代码:
@Html.DropDownList(name: "Enhanced_Rijndael_AlgorithmID", optionLabel: null, selectList: EnhancedRijndaelAvailableHashAlgorithmList.Select(item => new SelectListItem
{
Value = item.RecordID.ToString(),
Text = item.HashAlgorithm,
Selected = "select" == item.RecordID.ToString()
}), htmlAttributes: new { @class = "form-control" })
是否可以设置"选择的值"这个清单?
我唯一能想到的是以某种方式设置SelectListItem
集中的选定值。
答案 0 :(得分:0)
以下是我在提醒var app1 = document.querySelector('#App1');
app1Parent = app1.parentElement;
app1.remove();
app1Parent.appendChild(app1);
DropDownListFor