jsTree中双击处理时如何获取Node数据?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可以
在双击时访问相同的数据
This Works
To access the same data in case of double click