将Jstree contextMenu与Hyperlink一起使用是否可行

时间:2012-11-29 01:29:35

标签: asp.net-mvc contextmenu jstree http-redirect

是否可以在jsTree的上下文菜单中有一个Mvc4链接(http://localhost:59446/TierManagement/CreateTier),这将带我进入新视图(CreateTier页面)

1 个答案:

答案 0 :(得分:0)

点击上下文菜单中的该项,只需使用

重定向到所需的页面
document.location.href="<!--your link goes here-->";

代码将是

action(obj){
document.location.href="<!--your link goes here-->";
}