window.navigator 还是只是 navigator?
我应该使用什么对象来确定浏览器的信息?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要么,这其实并不重要。
navigator
是window
对象的一个属性,但window
对象的所有属性都可以作为全局变量访问。根据个人喜好,我总是为
window
对象的显式属性编写window.propertyName
。Either, it doesn't really matter.
navigator
is a property of thewindow
object, but all properties of thewindow
object are accessible as global variables.As a personal preference, I always write
window.propertyName
for explicit properties of thewindow
object.您可以使用此....
作为参考,请通过此链接 navigator
you can use this ....
for reference pls go through this link navigator