jsTree - 使用什么 jQuery 选择器?
我正在使用 jsTree。
1) 我想让根及其所有子项 dropbale (jQuery UI)
我应该使用什么选择器?
2)每个孩子看起来像:
<a href="#" class=""><ins class="jstree-icon"> </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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
这将找到所有包含 ins 标签的 a 标签。
Try this:
This will find all a tags that contain an ins tag.