如何提取某些 div 容器中的元素?
我正在进行的一个项目需要我从 div 容器中提取某些 元素(可以是对象类型)。通过使用 JavaScript,我能够从 div 获取所有
对象。但问题是,我只想要
的“第一级”中的对象,而不是其中一个
中包含的对象
。
例如,在下面的代码中,我只想要 AAA、BBB、CCC、DDD。不是 CCC-sub1 也不是 CCC-sub2。我如何通过 javascript/jquery 实现这一点?
非常感谢帮助!谢谢。
<div id="sampleList">
<ul>
<li>
<a href="a.html">AAA</a>
</li>
<li>
<a href="b.html">BBB</a>
</li>
<li>
<a href="c.html">CCC</a>
<ul>
<li>
<a href="c-sub1.html">CCC-Sub1</a>
</li>
<li>
<a href="c-sub2.html">CCC-Sub2</a>
</li>
</ul>
</li>
</li>
<a href="d.html">DDD</a>
</li>
</ul>
</div>
I'm on a project that requires me to extract certain <a>
elements (can be in Object type) from a div container. By using JavaScript, I'm able to get all <a>
objects from the div. But the problem is, I only want the objects in the "first level" of <ul>
, not the ones contained in another <ul>
within one of its <li>
.
For example, in the code below, I only want AAA, BBB, CCC, DDD. Not CCC-sub1 nor CCC-sub2. How do I achieve this via javascript/jquery?
Help is highly appreciated! Thanks.
<div id="sampleList">
<ul>
<li>
<a href="a.html">AAA</a>
</li>
<li>
<a href="b.html">BBB</a>
</li>
<li>
<a href="c.html">CCC</a>
<ul>
<li>
<a href="c-sub1.html">CCC-Sub1</a>
</li>
<li>
<a href="c-sub2.html">CCC-Sub2</a>
</li>
</ul>
</li>
</li>
<a href="d.html">DDD</a>
</li>
</ul>
</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于您标记了此 jQuery:
Since you tagged this jQuery:
代码:
尝试一下。
Code:
Try it.