查找 div 中第一次出现的类
我有下面的 html 结构,我想使用 jQuery 找到第一个 div 的内部 html,类为“popcontent”
<div>
<div class="popContent">1</div>
<div class="popContent">2</div>
</div>
I have the below html structure, i want to find the inner html of first div with class as "popcontent" using jQuery
<div>
<div class="popContent">1</div>
<div class="popContent">2</div>
</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
你会踢自己的......:)
You will kick yourself..... :)
类在 div 中第一次出现
第二次出现 类在 div 中
first occurrence of class in div
Second occurrence of class in div
在这种情况下,您可以使用
:first
选择器DEMO
you can use
:first
selector in this caseDEMO
应该给你第一个 div 的内容(在本例中为“1”)
should give you the first div's content ("1" in this case)
您可以使用 document.querySelector()
由于它只查找第一次出现,因此它比 jQuery 具有更好的性能
jsFiddle 版本的代码段
You could use document.querySelector()
Since it is only looking for first occurence, it has better performance than jQuery
jsFiddle version of snippet
使用 Jquery :first 选择器 如下所示:
Use the Jquery :first selector like below :
您可以使用以下 jQuery 表达式
You can use the following jQuery expression