如何获取指向该元素的DOM节点,jQuery节点或选择器?

时间:2011-05-27 00:24:00

标签: jquery dom jquery-plugins jstree

我想使用jsTree plugin types中的._get_type(node)函数文档说

  

获取节点的类型。            (混合节点)            这可以是指向元素的DOM节点,jQuery节点或选择器。

我不知道提供什么node。我使用hotkeys plugin并在输入按下我想显示该节点的类型。

我希望这是相关的html代码,rel="testsuite"指定节点类型。

<li class="jstree-closed" runurl="&lt;a class='non-html' href=&quot;http://10.0.0.50:4567/run2?run=login&amp;group=basics&quot;&gt;run&lt;/a&gt;" rel="testsuite" run="&lt;button class=&quot;square_button button_background&quot; type=&quot;button&quot; onclick=&quot;run_through_ajax('login','basics')&quot; &gt; run &lt;/button&gt;">

是否有任何教程可以帮助我理解我将来需要知道的任何问题?请注意,我无法阅读jsTree源代码以回答我的问题。

1 个答案:

答案 0 :(得分:2)

  

我不知道提供什么node

这意味着你可以传递任何......

  • document.getElementById('abc')
  • $('#abc')
  • #abc

这意味着它可能会将参数包含在$()中,这意味着它会自动支持所有三个。