<th>@Html.DropDownList("Tables", new List<SelectListItem>
{
new SelectListItem { Text = "A", Value = "Admin/Index"},
new SelectListItem { Text = "B", Value = "Admin/Index"}
}, "WWW",new { @onchange="location=this.value" })</th>
此代码仅适用于第一次,后来重定向到控制器“Admin/Index”它开始复制自己。所以我有这样的地址
localhost/Admin/Admin/Index instead of localhost/Admin/Index
我也试过了,效果一样
@onchange="document.href.location=this.value
@onchange="window.href.location=this.value
如何制作正确的js,因此重定向将一直有效。