jsTree - 使用什么 jQuery 选择器?

发布于 2025-01-06 04:32:42 字数 367 浏览 0 评论 0原文

我正在使用 jsTree。

1) 我想让根及其所有子项 dropbale (jQuery UI)

我应该使用什么选择器?

2)每个孩子看起来像:

<a href="#" class=""><ins class="jstree-icon">&nbsp;</ins>Default</a>

什么选择器将选择第一个孩子是 的所有锚点?

我尝试过:$("a>ins") 但它带来了所有的孩子本身,而不是父母的主播。

I'm using jsTree.

1) I want to make the root and all it's children dropbale (jQuery UI)

What selector should I use?

2) each child looks like:

<a href="#" class=""><ins class="jstree-icon"> </ins>Default</a>

what selector will choose all the anchors whose first child is <ins class="jstree-icon"> ?

I tried: $("a>ins")
but it brought all the children themselves and not the parents anchors.

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

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

发布评论

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

评论(1

寄居者 2025-01-13 04:32:42

试试这个:

$('a:has(ins)')

这将找到所有包含 ins 标签的 a 标签。

Try this:

$('a:has(ins)')

This will find all a tags that contain an ins tag.

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