1

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

4

1 回答 1

1

在上下文菜单中单击该项目时,只需使用重定向到所需页面

document.location.href="<!--your link goes here-->";

代码是

action(obj){
document.location.href="<!--your link goes here-->";
}
于 2013-06-08T04:21:28.193 回答