我正在使用DropDownListFor
从数据库表中填充的剑道。我想在最后添加一个选项,上面写着“添加新...”,它将用户带到该数据库表的创建视图。有没有办法做到这一点(最好在 MVC Helper 中,而不是在 javascript 中)。
问问题
327 次
1 回答
2
没有 JavaScript 是不可能的。如果使用 JavaScript,您需要使用更改事件并查看值是否等于列表中的最后一项,然后导航页面。像这样的东西:
function onChangeOfDDl(e){
if(...) { //you condition
window.location.href = "/editRecord/" + this.value()
// this.value() will give you the value for the selected item or the text if no underlying value exists
}
}
于 2013-10-01T20:06:35.830 回答