我想使用jsTree plugin types中的._get_type(node)函数文档说
获取节点的类型。 (混合节点) 这可以是指向元素的DOM节点,jQuery节点或选择器。
我不知道提供什么node
。我使用hotkeys plugin并在输入按下我想显示该节点的类型。
我希望这是相关的html代码,rel="testsuite"
指定节点类型。
<li class="jstree-closed" runurl="<a class='non-html' href="http://10.0.0.50:4567/run2?run=login&group=basics">run</a>" rel="testsuite" run="<button class="square_button button_background" type="button" onclick="run_through_ajax('login','basics')" > run </button>">
是否有任何教程可以帮助我理解我将来需要知道的任何问题?请注意,我无法阅读jsTree源代码以回答我的问题。
答案 0 :(得分:2)
我不知道提供什么
node
。
这意味着你可以传递任何......
document.getElementById('abc')
$('#abc')
#abc
这意味着它可能会将参数包含在$()
中,这意味着它会自动支持所有三个。