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-->"; }