如何访问jsTree中当前节点的html属性?

发布于 2024-11-16 10:03:40 字数 237 浏览 6 评论 0原文

当使用 jsTree 和热键插件时,我想访问当前节点的 html 属性。

我的 hotkyes 代码看起来像并给了我未定义,但节点有一个 ID

        "c" : function (obj) {
            alert($(obj).attr('id'));
            ,

如何访问节点的 html 属性?

When using jsTree and hotkeys plugin I want to access html attributes of current node.

My hotkyes code looks like and gives me undefined but the node got an ID

        "c" : function (obj) {
            alert($(obj).attr('id'));
            ,

How can I access the node's html attributes?

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

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

发布评论

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

评论(1

半夏半凉 2024-11-23 10:03:40

您可以通过在热键函数中使用 this._get_node(); 获取当前选定的节点,其中 node

  • < 的 jQuery 对象/code> 在你的树中。 this._get_node().attr("id") 将返回所选节点的 id
  • 但是,如果您想要当前悬停的节点(当用户使用热键遍历树时未按空格键选择节点时),您可以使用:

    "c" : function(event) {
        var node = this._get_node(this.data.ui.hovered);
        if(node) {
           var id = node.attr("id");
        }
    }
    

    jsFiddle 中的基本示例(按 C 选定节点,< code>D 用于悬停节点):http://jsfiddle.net/mfgLF/14/

    You can get the currently selected node by using this._get_node(); in your hotkey function, where node is the jQuery object of the <li> in your tree. this._get_node().attr("id") will return the id of the selected node.

    If you want the currently hovered node however (when the user has not pressed space to select the node while traversing the tree using hotkeys) you can use:

    "c" : function(event) {
        var node = this._get_node(this.data.ui.hovered);
        if(node) {
           var id = node.attr("id");
        }
    }
    

    Basic example in jsFiddle (press C for selected node, D for hovered node): http://jsfiddle.net/mfgLF/14/

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