jsTree中双击处理时如何获取Node数据?

发布于 2024-12-26 17:29:58 字数 524 浏览 2 评论 0原文

我正在使用 jsTree jQuery 插件,我想在双击后处理节点数据。对于单击,代码很简单,因为有 data 参数:

.bind("select_node.jstree", function(e, data) {
     if(jQuery.data(data.rslt.obj[0], "href")) {
         window.location=jQuery.data(data.rslt.obj[0], "href");
     } else {
         alert("No href defined for this element");
     }
})

但是在双击的情况下如何访问相同的数据?

.bind("dblclick.jstree", function(e) {
    ???
})

I'm using the jsTree jQuery plugin and I want to process the Node data after double click. For single click, the code is simple, as there is the data parameter:

.bind("select_node.jstree", function(e, data) {
     if(jQuery.data(data.rslt.obj[0], "href")) {
         window.location=jQuery.data(data.rslt.obj[0], "href");
     } else {
         alert("No href defined for this element");
     }
})

But how to access the same data in case of double click?

.bind("dblclick.jstree", function(e) {
    ???
})

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

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

发布评论

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

评论(1

も星光 2025-01-02 17:29:58

这可以

在双击时访问相同的数据

.bind("dblclick.jstree", function(e) {

var data= $(treeID).jstree().get_selected(true);

})

This Works

To access the same data in case of double click

.bind("dblclick.jstree", function(e) {

var data= $(treeID).jstree().get_selected(true);

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