JavaScript detection Browser version number (IE6,IE7,IE8,FF)

Source: Internet
Author: User
The code is as follows Copy Code
function Mybrowser () {
var useragent = navigator.useragent; Gets the useragent string for the browser
var Isopera = Useragent.indexof ("Opera") >-1; Judge whether Opera browser
var Isie = Useragent.indexof ("compatible") >-1 && useragent.indexof ("MSIE") >-1 &&!isopera; Determine if IE browser
var ISFF = Useragent.indexof ("Firefox") >-1; Determine if the Firefox browser
var Issafari = Useragent.indexof ("Safari") >-1; Determine if Safari browser


if (Isie) {
var IE5 = IE55 = IE6 = IE7 = IE8 = false;
var reie = new RegExp ("MSIE (\d+\.\d+);");
Reie.test (useragent);
var fieversion = parsefloat (regexp["$");

IE55 = Fieversion = = 5.5;
IE6 = Fieversion = = 6.0;
IE7 = Fieversion = = 7.0;
IE8 = Fieversion = = 8.0;

if (IE55) {return "IE55";}
if (IE6) {return "IE6";}
if (IE7) {return "IE7";}
if (IE8) {return "IE8";}
}//isie End

if (ISFF) {return "FF";}
if (Isopera) {return "Opera";}

}//mybrowser () End


Here is the function called above

The code is as follows Copy Code
if (mybrowser () = = "FF") {alert ("I am Firefox");}
if (mybrowser () = = "Opera") {alert ("I am Opera");}
if (mybrowser () = = "Safari") {alert ("I am Safari");}

if (mybrowser () = = "IE55") {alert ("I am IE5.5");}
if (mybrowser () = = "IE6") {alert ("I am IE6");}
if (mybrowser () = = "IE7") {alert ("I am IE7");}
if (mybrowser () = = "IE8") {alert ("I am IE8");}
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.