document.getElements() 支持
document.getElements() 函数的支持程度如何。此外,是否有一个 javascript 参考页,其中包含详细的浏览器支持信息。我通常使用 mozilla 文档,但我想知道是否有更好的东西。
我实际上找不到有关 document.getElements() 的任何文档,但是当我执行以下操作时:
document.getElements("div a");
它通过 IETester 在 chrome、ff、safari、ie8 和 ie6-9 中运行良好。我认为 IETester 可能对所有浏览器使用相同的 javascript 引擎(对此不确定)。
How well supported is the document.getElements() function. Additionally, is there a javascript reference page that has detailed browser support information somewhere. I usually use the mozilla docs, but I was wondering if there is something better.
I actually can't find any documentation on document.getElements() but when I do things like:
document.getElements("div a");
It works great in chrome, ff, safari, ie8 and ie6-9 via IETester. I think IETester may use the same javascript engine for all browsers though (not sure about that).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不存在 document.getElements 这样的东西...我敢打赌你在 Jsfiddle 中进行编码,并且没有意识到包含了 mootools 库;)
看看:
http://jsfiddle.net/Zevan/pRKzy/
There is no such thing as document.getElements... I'll bet your coding in Jsfiddle and don't realize that the mootools lib is included ;)
Have a look:
http://jsfiddle.net/Zevan/pRKzy/
可能您正在寻找
querySelecterAll
函数:这是最方便、最有用的功能。
要检查浏览器如何支持您请求的功能,您可以使用“我可以使用”网站:
开在这个网站上,您不仅可以检查功能,还可以检查 HTML 属性和 CSS 功能
Probably you are looking for
querySelecterAll
function:This is most handy and much usable function.
To check how your requested feature is supported among browsers you can use "Can I Use" site:
On this site you can check not only functions but HTML attributes and CSS capabilities too
quirksmode.org 对于此类事情来说是一个非常好的资源(尽管没有在 IE9 上完全更新,因为它是一个移动的目前的目标)。
注意:他们没有专门针对
document.getElements()
的条目(您确定这个名称正确吗?),但总的来说,这是一个非常完整的参考,这里有一个示例 - 查看.querySelectorAll()
(它执行您所描述的操作...)。quirksmode.org is a pretty good resource for things like this (though not fully updated on IE9, as it's a moving target at the moment).
Note: they don't have an entry for
document.getElements()
specifically (are you sure you're getting this name right?), but in general it's a pretty complete reference, here's an example - check out.querySelectorAll()
(which does what you describe...).