原型 $$ 返回数组,应该返回一个元素,如 $
当在原型中使用美元函数时,我总是得到一组元素,而不是只有一个带有美元函数的元素。如何结合 $$ 的 CSS 选择器的强大功能,但仍然只能返回一个元素?
更改源的结构是不可能的,所以我不能只用 id 选择它。它需要使用 CSS 进行选择,但应该只返回一个元素。
When using the dollar-dollar-function in prototype I alway get an array of elements back, instead of just one element with the dollar-function. How can I combine the power of CSS-selectors of $$ but still get only one element back?
Changing the structure of the source is not possible, so I can't just select it with the id. It needs to get selected with CSS, but should just return one element.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你也可以这样做
它看起来比
$$('.foo')[0]
更符合我的口味:)You can also do
It looks cleaner than
$$('.foo')[0]
for my taste :)按类名选择时返回单个元素是没有意义的,因为 DOM 中可能有许多元素具有此类。因此,如果您确定返回数组的第一个元素是唯一的,则始终可以使用它。
It does not make sense to return a single element when selecting by class name because potentially there could be many elements in the DOM that have this class. So you could always use the first element of the returned array if you are sure that it will be unique.