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

发布于 2024-11-10 00:02:20 字数 920 浏览 5 评论 0原文

我想使用 jsTree 插件类型 中的 ._get_type ( node ) 函数 文档说

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

我不知道要提供什么作为节点。我使用 热键插件 并按 Enter 键我想显示该节点的类型。

我希望这是相关的 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 源代码来回答我的问题。

I want to use ._get_type ( node ) function from jsTree plugin types The documentation says

Get the type of a node.
(mixed node)
This can be a DOM node, jQuery node or selector pointing to the element.

I do not know what to supply as a node. I use hotkeys plugin and on enter press I want to display the type of that node.

I hope this is the relevant html code where rel="testsuite" specifies the node type.

<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>">

Is there any tutorial that can help me to understand anything I need to know my own questions like that in the future? Note that I cannot read jsTree source code in order to answer my question.

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

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

发布评论

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

评论(1

羁绊已千年 2024-11-17 00:02:20

我不知道要提供什么作为节点

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

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

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

I do not know what to supply as a node.

It means you can pass any of...

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

It means it probably wraps the argument with $(), meaning it will automatically support all three.

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