【发布时间】:2012-11-17 00:44:42
【问题描述】:
是否可以在 jsTree 的上下文菜单中有一个 Mvc4 链接 (http://localhost:59446/TierManagement/CreateTier),它将带我进入新视图(CreateTier 页面)
【问题讨论】:
标签: asp.net-mvc contextmenu jstree http-redirect
是否可以在 jsTree 的上下文菜单中有一个 Mvc4 链接 (http://localhost:59446/TierManagement/CreateTier),它将带我进入新视图(CreateTier 页面)
【问题讨论】:
标签: asp.net-mvc contextmenu jstree http-redirect
在上下文菜单中单击该项目时,只需使用重定向到所需页面
document.location.href="<!--your link goes here-->";
代码是
action(obj){
document.location.href="<!--your link goes here-->";
}
【讨论】: