在“空间”上切换节点热键,但不在“鼠标单击”上

发布于 2024-12-26 02:11:36 字数 232 浏览 1 评论 0原文

要使用“mouseclick”和“space”切换节点,我刚刚写道:

  .bind("select_node.jstree", function (event, data) {
       $("#tree").jstree("toggle_node", data.rslt.obj);
    })

但是如果我只需要切换“space”热键而不是“mouseclick”怎么办?

To toggle node with both "mouseclick" and "space" I just wrote :

  .bind("select_node.jstree", function (event, data) {
       $("#tree").jstree("toggle_node", data.rslt.obj);
    })

but what if I just need to toggle only on "space" hotkey and not on "mouseclick".

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

木槿暧夏七纪年 2025-01-02 02:11:36

您可以使用hotkyes插件 http://jsfiddle.net/radek/G789k/31/

  • < p>添加热键定义

    热键:{
         “空间”:函数(e,n){
                   var node = this._get_node(this.data.ui.hovered);
                   $("#jstree").jstree("toggle_node",node);
         }
    }
    
  • 我删除了你的绑定

You can use hotkyes plugin http://jsfiddle.net/radek/G789k/31/

  • added hotkeys definition

    hotkeys: {
         "space" : function (e, n) {
                   var node = this._get_node(this.data.ui.hovered);
                   $("#jstree").jstree("toggle_node",node);
         }
    }
    
  • I removed your bind

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文