window.navigator 还是只是 navigator?

发布于 2024-12-15 09:29:02 字数 182 浏览 0 评论 0原文

我应该使用什么对象来确定浏览器的信息?

alert(window.navigator.userAgent);

或者

alert(navigator.userAgent);

是否有关于决策的跨浏览器兼容性的任何建议?

What object I should use to determine browser's info?

alert(window.navigator.userAgent);

or

alert(navigator.userAgent);

Is there any recomendations about cross-browser compatibility of a decision?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

冷弦 2024-12-22 09:29:02

要么,这其实并不重要。 navigatorwindow 对象的一个​​属性,但 window 对象的所有属性都可以作为全局变量访问。

navigator === window.navigator;
//-> true

根据个人喜好,我总是为 window 对象的显式属性编写 window.propertyName

Either, it doesn't really matter. navigator is a property of the window object, but all properties of the window object are accessible as global variables.

navigator === window.navigator;
//-> true

As a personal preference, I always write window.propertyName for explicit properties of the window object.

始于初秋 2024-12-22 09:29:02

您可以使用此....

 alert("You're using " + navigator.appName);

作为参考,请通过此链接 navigator

you can use this ....

 alert("You're using " + navigator.appName);

for reference pls go through this link navigator

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