Navigator - Web API 接口参考 编辑

Navigator 接口表示用户代理的状态和标识。 它允许脚本查询它和注册自己进行一些活动。

可以使用只读的 window.navigator 属性检索navigator对象。

属性

不从NavigatorID, NavigatorLanguage, NavigatorOnLine, NavigatorGeolocation, NavigatorPlugins, NavigatorUserMedia, 和 NetworkInformation 中继承任何属性,但是实现了定义在这些对象中的如下属性。

标准属性

Navigator.activeVRDisplays 只读
筛选所有的 VRDisplay 对象,把其中所有VRDisplay.ispresenting属性的值为true的对象以数组的形式返回。 
NavigatorID.appCodeName 只读
返回当前浏览器的内部“开发代号”名称。 不能保证此属性返回的值是正确的。
NavigatorID.appName 只读
以 DOMString 的形式返回浏览器官方名称。 不能保证此属性返回的值是正确的。
NavigatorID.appVersion 只读
DOMString 的形式返回浏览器版本。不能保证此属性返回的值是正确的。
Navigator.battery 只读
返回一个 BatteryManager 对象,你可以用它来获取一些电池充电状态的信息。
Navigator.connection 只读
提供一个NetworkInformation对象来获取设备的网络连接信息。
Navigator.cookieEnabled 只读
当忽略 cookie 时返回 false,否则返回 true
Navigator.geolocation 只读
返回一个 Geolocation 对象,据之可访问设备的地理位位置信息。
NavigatorConcurrentHardware.hardwareConcurrency 只读
返回可用的逻辑处理器核心数。
NavigatorPlugins.javaEnabled 只读
返回Boolean表明浏览器是否支持Java。
Navigator.keyboard 只读
返回一个Keyboard对象,该对象提供对以下功能的访问:检索键盘布局图和切换从物理键盘捕获按键的功能。
NavigatorLanguage.language 只读
返回DOMString表示用户的首先语言,通常是浏览器用户界面的语言。当未知的时,返回null。
NavigatorLanguage.languages 只读
 返回一个表示用户已知语言的DOMString数组,并按优先顺序排列。
NavigatorPlugins.mimeTypes 只读
Navigator.locks 只读
Returns a LockManager object which provides methods for requesting a new Lock object and querying for an existing Lock object
Navigator.mediaCapabilities 只读
Returns a MediaCapabilities object that can expose information about the decoding and encoding capabilities for a given format and output capabilities.
Navigator.maxTouchPoints 只读
Returns the maximum number of simultaneous touch contact points are supported by the current device.
返回MimeTypeArray数组用于列举浏览器所支持的MIME类型。
NavigatorOnLine.onLine 只读
返回Boolean来表明浏览器是否联网。
Navigator.oscpu
返回当前操作系统名。
Navigator.permissions 只读
返回一个Permissions对象,该对象可用于查询和更新Permissions API涵盖的API的权限状态。
NavigatorID.platform 只读
返回浏览器平台名,不确定此值是否有效。
NavigatorPlugins.plugins 只读
返回PluginArray数组用于列举出浏览器安装的插件。
NavigatorID.product 只读
在任意浏览器下都只返回'Gecko',此属性只用于兼容的目的。
Navigator.serviceWorker 只读
返回ServiceWorkerContainer 对象用于提供注册、删除、更新以及为了associated documentServiceWorker对象之间的通信。
NavigatorStorage.storage 只读
Returns the singleton StorageManager object used for managing persistence permissions and estimating available storage on a site-by-site/app-by-app basis.
NavigatorID.userAgent 只读
返回当前浏览器的用户代理。
Navigator.webdriver 只读

非标准方法

navigator.buildID
返回浏览器识别码。这一方法返回时间戳,例如,在Firefox 64发行版中返回"20181001000000"。.
Navigator.cookieEnabled
返回布尔值以表明cookies是否能再浏览器中启用
navigator.doNotTrack
报告用户的不追踪参数值,当值为yes,你的网址或应用将不追踪用户
navigator.id
返回 id 对象, 你能用 BrowserID 添加支持 到你的网址
navigator.mozApps
Returns an Apps object you can use to install, manage, and control Open Web apps.
navigator.mozAudioChannelManager
The navigator.mozAudioChannelManager object provides access to the mozAudioChannelManager interface, which is used to manage your Firefox OS device's audio channels, including setting what channel's volume to affect when the volume buttons are pressed inside a particular app.
navigator.mozNotification 已废弃 Gecko 22
navigator.webkitNotification
Returns a notification object you can use to deliver notifications to the user from your web application.
navigator.mozSocial
The Object, returned by the navigator.mozSocial property, is available within the social media provider's panel to provide functionality it may need.
navigator.productSub
Returns the build number of the current browser (e.g., "20060909").
navigator.securitypolicy
Returns an empty string. In Netscape 4.7x, returns "US & CA domestic policy" or "Export policy".
navigator.standalone
Returns a boolean indicating whether the browser is running in standalone mode. Available on Apple's iOS Safari only.
navigator.vendor
返回当前浏览器的供应商的名字(例如:“Netscape6”)。
navigator.vendorSub
返回供应商版本号码(例如:“6.1”)。
navigator.webkitPointer
Returns a PointerLock object for the Mouse Lock API.

方法

Doesn't inherit any method, but implements those defined in NavigatorID, NavigatorContentUtils, NavigatorUserMedia, and NavigatorStorageUtils.

标准方法

Navigator.getVRDisplays()
Returns a promise that resolves to an array of VRDisplay objects representing any available VR devices connected to the computer.
NavigatorUserMedia.getUserMedia()
After having prompted the user for permission, returns the audio or video stream associated to a camera or microphone on the local computer.
navigator.registerContentHandler
Allows web sites to register themselves as a possible handler for a given MIME type.
navigator.registerProtocolHandler
Allows web sites to register themselves as a possible handler for a given protocol.
Navigator.requestMediaKeySystemAccess()
Returns a Promise for a MediaKeySystemAccess object.
Navigator.sendBeacon()
Used to asynchronously transfer a small amount of data using HTTP from the User Agent to a web server.
Navigator.share()
Invokes the native sharing mechanism of the current platform.
NavigatorID.taintEnabled() 已废弃 Gecko 1.7.8 已废弃 Gecko 9.0
Returns false. JavaScript taint/untaint functions removed in JavaScript 1.2.
Navigator.vibrate()
Causes vibration on devices with support for it. Does nothing if vibration support isn't available.

非标准方法

navigator.mozIsLocallyAvailable
Lets code check to see if the document at a given URI is available without using the network.
navigator.mozPay
Allows in-app payment.

规范

规范状态备注
HTML Living Standard
the Navigator object
Living Standard

浏览器兼容性

BCD tables only load in the browser

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:63 次

字数:18085

最后编辑:7年前

编辑次数:0 次

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