jQuery 中的链接选择器
我是一个习惯 mootools 链接选择器方式的人,但我似乎找不到在任何地方如何在 jQuery 中做同样的事情。
假设我在 selectObj
变量中有一个 select 元素。 我需要的是获得该选择中的最后一个选项。
在 mootools 中我会做类似的事情:
var option = $(selectObj).getElement('nth-child(last)')
我可以做类似的事情吗?或者在 jQuery 中获取最后一个 option
的方法是什么?
附言。 我知道 parent > 子选择器,但我无法真正使用它,因为我不知道使用什么选择器来获取select
。 我只有结果元素。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用
find
在当前查询中执行另一个查询。一般来说,您可以查看 选择器 和 遍历 页面。
You can use
find
to perform another query within the current query.In general, you can check out the Selectors and Traversal pages on jQuery docs when you're trying to figure out how to select something.
将返回任何元素的最后一个子元素
will return the last child of any element
您还可以使用
.last()
来实现此目的。You can also use
.last()
for this purpose.jQuery 有 :last 选择器
会执行到表中最后一行的操作。
jQuery has the :last Selector
Will do stuff to the last row in a table.