document.getElements() 支持

发布于 2024-10-06 08:25:49 字数 317 浏览 4 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

筱武穆 2024-10-13 08:25:49

不存在 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/

合久必婚 2024-10-13 08:25:49

可能您正在寻找 querySelecterAll 函数

elementList = parentNode.querySelectorAll(selectors);

这是最方便、最有用的功能。

要检查浏览器如何支持您请求的功能,您可以使用“我可以使用”网站

https://caniuse.com/#search=querySelectorAll

开在这个网站上,您不仅可以检查功能,还可以检查 HTML 属性和 CSS 功能

Probably you are looking for querySelecterAll function:

elementList = parentNode.querySelectorAll(selectors);

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:

https://caniuse.com/#search=querySelectorAll

On this site you can check not only functions but HTML attributes and CSS capabilities too

谢绝鈎搭 2024-10-13 08:25:49

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...).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文