This translation is incomplete. Please help translate this article from English.
The NavigatorID interface contains methods and properties related to the identity of the browser.
There is no object of type NavigatorID, but other interfaces, like Navigator or WorkerNavigator, implement it.
Properties
The NavigatorID interface doesn't inherit any property.
NavigatorID.appCodeName読取専用- Always returns
'Mozilla', on any browser. This property is kept only for compatibility purpose. NavigatorID.appName読取専用- Returns the official name of the browser. Do not rely on this property to return the correct value.
NavigatorID.appVersion読取専用- Returns the version of the browser as a string. Do not rely on this property to return the correct value.
NavigatorID.platform読取専用- Returns a string representing the platform of the browser. Do not rely on this property to return the correct value.
NavigatorID.product読取専用- Always returns
'Gecko', on any browser. This property is kept only for compatibility purpose. NavigatorID.userAgent読取専用- Returns the user agent string for the current browser.
Methods
The NavigatorID interface doesn't inherit any method.
NavigatorID.taintEnabled()- Always returns
false. JavaScript taint/untaint functions were removed in JavaScript 1.2. This method is only kept for compatibility purpose
Specifications
| Specification | Status | Comment |
|---|---|---|
| WHATWG HTML Living Standard The definition of 'NavigatorID' in that specification. |
Living Standard | Added the appCodeName property and the taintEnabled() method, for compatibility purpose. |
| HTML5 The definition of 'NavigatorID' in that specification. |
勧告 | Initial specification. |
Browser compatibility
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|
| Basic support | (有) | (有) | (有) | (有) | (有) |
| Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|
| Basic support | (有) | (有) | (有) | (有) | (有) | (有) |
See also
- The
NavigatorandWorkerNavigatorinterfaces that implement it.

