如何从jquery html集合中获取精确的元素
例如 $('.some-class')
返回 3 个元素。
我只需要得到其中之一,例如第二个。
$('.some-class')[1]
返回此元素的 HTML 版本,但不返回 jQuery 对象。
所以我需要这样做:
$($('.some-class')[1])
为此目的。
这是唯一的方法吗? 两次调用 jquery 选择器函数...可能有更好的决定吗?
For example $('.some-class')
returns 3 elements.
I need to get only one of them, for exampled the second.
$('.some-class')[1]
returns HTML-version of this element, but not jQuery object.
So I need to do:
$($('.some-class')[1])
for this purpose.
Is it the only way to do?
Two times calling jquery selector function... may be there is better decision?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
.eq(index)
http://api.jquery.com/eq/
.eq(index)
http://api.jquery.com/eq/
或直接选择它:
or to select it directly: