目前哪些浏览器支持 Web Workers?
我查了一下,但找不到权威的列表。谢谢!
I dug around, but couldn't find an authoritative list. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我查了一下,但找不到权威的列表。谢谢!
I dug around, but couldn't find an authoritative list. Thanks!
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
也许我不会比 Web Worker 支持 统计
更新更好地回答这个问题: 因为上面发布的链接不起作用(奇怪,但是“..报告为攻击页面并已被阻止..”)我找到了另一个链接,它与前一个链接最接近(不是相同,只是我能找到的最接近的):我什么时候可以使用... Web Workers
Probably I won't answer it better then Web Worker Support statistic
UPDATE: since the link posted above is not working (strange, but "..reported as an attack page and has been blocked.." ) I've found another one, which is the most closest to the previous one (not the same, just the closest that I could find): When can I use... Web Workers
caniuse.com 包含适用于大多数浏览器的功能的完整列表。
以下是支持 Web Workers 的浏览器列表:
http://caniuse.com/#feat=webworkers
caniuse.com contains a comprehensive list of features for most browsers.
Here is the list of browsers that support web workers:
http://caniuse.com/#feat=webworkers
根据维基百科的此表,至少除了 IE 之外的所有主要布局引擎似乎支持它。
According to this table at Wikipedia, at least all major layout engines except IE's seem to support it.
还有一些可用的脚本可以通过同步运行使您的 Web Worker 向后兼容非 HTML 5 浏览器。
这是我最近写的一篇: https://github.com/guyht/GWorker
这是另一篇我遇到过但从未测试过:http://code.google.com/p/ ie-web-worker/
There are also some scripts available that will make your web workers backwards compatible with non HTML 5 browsers by running them synchronously.
This is one that I wrote recently: https://github.com/guyht/GWorker
This is another one I have come across but never tested: http://code.google.com/p/ie-web-worker/