是否可以在jsTree的上下文菜单中有一个Mvc4链接(http://localhost:59446/TierManagement/CreateTier
),这将带我进入新视图(CreateTier页面)
答案 0 :(得分:0)
点击上下文菜单中的该项,只需使用
重定向到所需的页面document.location.href="<!--your link goes here-->";
代码将是
action(obj){
document.location.href="<!--your link goes here-->";
}