Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 jsTree 的上下文菜单中有一个 Mvc4 链接(http://localhost:59446/TierManagement/CreateTier),这将带我进入新视图(CreateTier 页面)
http://localhost:59446/TierManagement/CreateTier
在上下文菜单中单击该项目时,只需使用重定向到所需页面
document.location.href="<!--your link goes here-->";
代码是
action(obj){ document.location.href="<!--your link goes here-->"; }