找到 Android 浏览器中使用的 webkit 版本?
有没有办法知道某些特定手机上的 Android 浏览器使用的是哪个版本的 webkit 软件?
如果有一个您可以浏览以获取该信息的 URL,那就太好了。但任何其他方式也很好。如果你知道 webkit 版本,你就知道 html5 支持多少。
Is there a way to tell which version of the webkit software is used in the Android browser on some specific handset?
What would be really great is if there is a URL you can browse to get that information. But any other way would be good too. If you know the webkit version, you know how much html5 suport to expect.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
至少在 Android 2.3.3 上,Webkit 的版本反映在用户代理字符串中。
当我在装有 2.3.3 (Cyanogenmod 7.0.3) 的 Android 设备上访问 WhatsMyUserAgent.com 时,我得到:
On Android 2.3.3, at least, the version of Webkit is reflected in the user agent string.
When I go to WhatsMyUserAgent.com on my Android device with 2.3.3 (Cyanogenmod 7.0.3), I get:
此网站为您提供了摘要 http://jimbergman.net/webkit-version-in-android-version/
This site has a summary for you http://jimbergman.net/webkit-version-in-android-version/
当您在地址栏中输入
javascript:alert(navigator.userAgent)
时,您将看到列出的 WebKit 版本,例如When you type
javascript:alert(navigator.userAgent)
in the location bar you'll see the WebKit version listed e.g.用户代理的结果如下:
The useragent is the reuslt like:
我们也可以使用
Also we can use
几年前就有一个 Javascript 库可以做到这一点。不确定它是如何最新的:
http://trac.webkit.org/wiki/DetectingWebKit
There's a Javascript library from several years ago that can do this. Not sure how up-to-date it is:
http://trac.webkit.org/wiki/DetectingWebKit