A useful but often overrated JavaScript function is the browser detect. Sometimes you want to give specific instructions or load a new page in case the viewer uses, for instance, Safari.
If you're new to JavaScript,don'tuse this script. Please read theobject detectionpage first.
Let's detect your browser:
You're using Chrome 15 on Linux!
Copy this script into your JavaScript files. It works immediately, and you can query three properties of theBrowserDetect
object:
BrowserDetect.browser
BrowserDetect.version
BrowserDetect.OS
var BrowserDetect = { init: function () { this.browser = this.searchString(this.dataBrowser) || "An unknown browser"; this.version = this.searchVersion(navigator.userAgent) || this.searchVersion(navigator.appVersion) || "an unknown version"; this.OS = this.searchString(this.dataOS) || "an unknown OS"; }, searchString: function (data) { for (var i=0;i<data.length;i++) { var dataString = data[i].string; var dataProp = data[i].prop; this.versionSearchString = data[i].versionSearch || data[i].identity; if (dataString) { if (dataString.indexOf(data[i].subString) != -1) return data[i].identity; } else if (dataProp) return data[i].identity; } }, searchVersion: function (dataString) { var index = dataString.indexOf(this.versionSearchString); if (index == -1) return; return parseFloat(dataString.substring(index+this.versionSearchString.length+1)); }, dataBrowser: [ { string: navigator.userAgent, subString: "Chrome", identity: "Chrome" }, { string: navigator.userAgent, subString: "OmniWeb", versionSearch: "OmniWeb/", identity: "OmniWeb" }, { string: navigator.vendor, subString: "Apple", identity: "Safari", versionSearch: "Version" }, { prop: window.opera, identity: "Opera", versionSearch: "Version" }, { string: navigator.vendor, subString: "iCab", identity: "iCab" }, { string: navigator.vendor, subString: "KDE", identity: "Konqueror" }, { string: navigator.userAgent, subString: "Firefox", identity: "Firefox" }, { string: navigator.vendor, subString: "Camino", identity: "Camino" }, { // for newer Netscapes (6+) string: navigator.userAgent, subString: "Netscape", identity: "Netscape" }, { string: navigator.userAgent, subString: "MSIE", identity: "Explorer", versionSearch: "MSIE" }, { string: navigator.userAgent, subString: "Gecko", identity: "Mozilla", versionSearch: "rv" }, { // for older Netscapes (4-) string: navigator.userAgent, subString: "Mozilla", identity: "Netscape", versionSearch: "Mozilla" } ], dataOS : [ { string: navigator.platform, subString: "Win", identity: "Windows" }, { string: navigator.platform, subString: "Mac", identity: "Mac" }, { string: navigator.userAgent, subString: "iPhone", identity: "iPhone/iPod" }, { string: navigator.platform, subString: "Linux", identity: "Linux" } ] }; BrowserDetect.init();
This script will only continue to work if you regularly check whether newer browsers still follow the rules set forth in thedataBrowser
anddataOS
arrays.
ThedataBrowser
array is filled with objects that contain the properties that help the script detect your users' browser. Note its general syntax:
dataBrowser: [ { prop: window.opera, identity: "Opera", versionSearch: "Version" // note: no comma }, { string: navigator.userAgent, subString: "MSIE", identity: "Explorer", versionSearch: "MSIE" // note: no comma } // note: no comma ];
The[]
define an array literal, and all of its elements are object literals. Each object literal is enclosed in curly braces{}
and contains a few properties (name: value,
). Note that a comma between the objects and between the properties is required, but that the last comma is always forbidden.
Every object in thedataBrowser
array can contain the following properties:
string
andsubString
properties. These say: "search forsubString
instring
". If the subString is found, the browser is identified.prop
property. It says "see ifprop
is supported". If it is, the browser is identified.identity
string. This string becomes the value ofBrowserDetect.browser
.versionSearch
string. This is for searching for the version number (see below). If this property is absent, theidentity
string is used instead.Every object must contain either 1 or 2 (never both!), must contain 3 and may contain 4.
As an example, here's the Safari object:
{ string: navigator.vendor, subString: "Apple", identity: "Safari" },
The script takes the value ofnavigator.vendor
and sees if it contains the string "Apple". If it does,BrowserDetect.browser
is set to "Safari" and the browser detection quits. If it doesn't, the script moves on to the next object.
The next object is Opera:
{ prop: window.opera, identity: "Opera", versionSearch: "Version" },
Here the script checks if the propertywindow.opera
exists. If it does,BrowserDetect.browser
is set to "Opera". If it doesn't, the script moves on to the next object.
If the browser turns out to be Opera the script looks for version information after the "Version" string.
userAgent
andvendor
The trick of browser detection is knowing where to look for the information you need. Traditionally we usenavigator.userAgent
. However, precisely because this check is traditional many minor browsers change theirnavigator.userAgent
string so that bad detects written by amateur web developers are fooled into identifying it as Explorer. Section 3D ofthe bookdiscusses this problem, as well as some gory details ofnavigator.userAgent
.
More recently, new browsers have started to support thenavigator.vendor
property, which contains information about the vendor. In general I prefer to use this string for my detection, since it's less contaminated by obfuscation.
Of course, as soon as amateurs start using my detection script to detect Safari, Opera, Konqueror or other browsers, the browser vendors will be forced to change the value ofnavigator.vendor
and my detect will not work any more.
The objects indataBrowser
are used in the order they appear; that's whydataBrowser
is an array. As soon as a positive identification is made the script ends, and it doesn't check the remaining objects.
Detection order is very important. The general rule is that you check for the minor browsers first. The reason is that many minor browsers give their users the opportunity to change identity in order to work around browser detects.
For instance, the Operanavigator.userAgent
may contain "MSIE". If we'd check for Explorer first, we'd find the "MSIE" and would incorrectly conclude that the browser is Explorer. In order to avoid this false detection, we should check for Opera first. If the browser is in fact Opera, the script never proceeds to the "MSIE" check.
Safari'snavigator.userAgent
also contains "Gecko". This causes the same problem: a check for Mozilla would reveal "Gecko", and Safari would be identified as Mozilla. Therefore the Mozilla check only takes place if the browser is not Safari.
If you add a new object to detect a new browser, always add it before the Explorer/Mozilla objects at the end of the array.
In general, the version number of a browser can be found directly after its name innavigator.userAgent
. The script searches for this name and takes the number that appears after it. For instance, this is Konqueror'snavigator.userAgent
:
Mozilla/5.0 (compatible; Konqueror/3; Linux)
The script searches for the string "Konqueror", skips the next character, and takes the number after that. This is the version number. The script usesparseFloat
, so that decimal places in the version number also become part ofBrowserDetect.version
.
Unfortunately Safari's string never contains its official version; only its internal Apple version number (ie. not 1.3.2 but 312.6). Therefore the version number detect doesn't work in Safari. Since this is clearly Apple's fault (it doesn't follow established conventions), I don't care.
In general, the browser name as it appears innavigator.userAgent
is the same as the identification string. If the browser is "iCab", the script searches for "iCab".
However, Explorer needs "MSIE", Mozilla needs "rv", and older Netscape versions need "Mozilla". In order to accomodate these problems you may add aversionSearch
property to the browser object. If it's there it's used for the version detect; if it's not there theidentity
string is used instead.
Take the Firefox and Explorer objects:
{ string: navigator.userAgent, subString: "Firefox", identity: "Firefox" }, { string: navigator.userAgent, subString: "MSIE", identity: "Explorer", versionSearch: "MSIE" },
If the browser is Firefox, the script should look for the "Firefox" string. Since this is also the browser identity string, a specialversionSearch
is not necessary.
Explorer, however, puts its version number after the string "MSIE". Since I use "Explorer" as identity string, I have to define theversionSearch
property as "MSIE".
userAgent
andappVersion
The version detect script searches for the browser name in bothnavigator.userAgent
andnavigator.appVersion
. The reason is iCab: this browser'snavigator.userAgent
may not contain the string "iCab", butnavigator.appVersion
always does.
The OS detect works the same as the browser detect. Currently all my OS detects usenavigator.platform
, since this property appears to always contain the correct information.
Below you see the objects contained by the objectnavigator
. These variables can be read out and give information about the browser and computer of your users. Use this information to add new objects to the browser detect.
navigator.language = en-US navigator.product = Gecko navigator.mimeTypes = [object DOMMimeTypeArray] navigator.appVersion = 5.0 (X11; Linux i686) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.874.121 Safari/535.2 navigator.plugins = [object DOMPluginArray] navigator.onLine = true navigator.platform = Linux i686 navigator.vendor = Google Inc. navigator.appCodeName = Mozilla navigator.cookieEnabled = true navigator.geolocation = [object Geolocation] navigator.appName = Netscape navigator.productSub = 20030107 navigator.userAgent = Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.874.121 Safari/535.2 navigator.vendorSub = navigator.javaEnabled = function javaEnabled() { [native code] } navigator.getStorageUpdates = function getStorageUpdates() { [native code] } navigator.registerProtocolHandler = function registerProtocolHandler() { [native code] }
转自:http://www.quirksmode.org/js/detect.html