调用指定索引的子级?
有人知道编写此语句的正确语法吗?
$('.nav ul li')[0].children("a")
由于某种原因,这不起作用。返回的是它不是一个函数。 :(
Anyone know the proper syntax to write this statement?
$('.nav ul li')[0].children("a")
For some reason this is not working. The return is that its not a function. :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试从结果中获取第一个元素。
或者,如果您需要特定索引,
您也可以根据需要使用选择器
:eq(n)
和:first
。You can try this for getting the first element from the results.
Or if you need a specific index
You can also use the selectors
:eq(n)
and:first
if you want.