如何查明用户正在使用哪种浏览器?
我想显示一个弹出窗口,告诉用户他们的浏览器是否已过时。我如何在 javascript 中找出他们使用的浏览器?
I would like to show a pop-up telling the user if their browser is outdated. How can I find out what browser they are using in javascript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
然后找到版本后,您将根据您的需要进行比较并显示弹出窗口。
Then after finding the version, u will compare and display popup according to your need.
查看此浏览器检测脚本:
http://www.quirksmode.org/js/detect.html< /a>
Check out this browser detection script:
http://www.quirksmode.org/js/detect.html
不检测浏览器,而是检测浏览器功能。 Stack Overflow 上已经有一个很好的讨论:
浏览器检测与功能检测
Don't detect browsers, detect browser features. There's a good discussion on Stack Overflow already:
Browser detection versus feature detection