jQuery - ul 中 li 元素的第一行
jQuery 中是否有一个选择器仅引用主对象的特定子对象的第一行? 我在这里指的是以下结构:
<ul>
<li>
<ul>
<li></li>
</ul>
</li>
<li>
<ul>
<li></li>
</ul>
</li>
</ul>
我只想将触发器应用于 li 的第一行,而不是嵌入其中的触发器。
Is there a selector in jQuery which refers to only first line of specific children of the main object?
What I'm referring here to is the following structure:
<ul>
<li>
<ul>
<li></li>
</ul>
</li>
<li>
<ul>
<li></li>
</ul>
</li>
</ul>
I only want apply a trigger to the first line of li not the ones embedded within them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这意味着只有 ul 的直接子 li 节点,
否则如果您无法控制可以使用的类
That means only direct child li nodes of the ul
Otherwise if you don't have control of the classes you can use
下面的代码将只获取代码中 ul 的子元素而不是 li 的 li 元素
我想它会像这样
这只是为了给出一个提示
The following code will fetch only the li elements that are children of ul not li
in your code I suppose it ll be something like
This is only to give a hint