如何访问jsTree中当前节点的html属性?
当使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过在热键函数中使用
this._get_node();
获取当前选定的节点,其中node
是this._get_node().attr("id")
将返回所选节点的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, wherenode
is the jQuery object of the<li>
in your tree.this._get_node().attr("id")
will return theid
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:
Basic example in jsFiddle (press
C
for selected node,D
for hovered node): http://jsfiddle.net/mfgLF/14/