我的页面上有一个下拉列表 (DropDownListFor) 和一个 ActionLink。基本上,我遇到的问题是我试图从下拉列表中捕获选定的值并将其作为 ID 传递到我的 ActionLink 中。这是我的代码:
@Html.DropDownListFor(x => x.Capsules, new SelectList(Model.Capsules, "pk", "name", "pk"))
<br />
@Html.ActionLink("Submit", "Create",
new { controller = "Process", id = /*JavaScript here to get the selected ID for the DropDownList above*/ },
new { data_role = "button" })
对于我想要完成的事情,有没有办法将 JavaScript 嵌入到我的 Html.ActionLink 调用中?如果没有办法,或者不推荐,您能否建议另一种解决方案来解决此问题?提前致谢!