使用Javascript判斷瀏覽器和作業系統類型:全面簡潔的方法

來源:互聯網
上載者:User

前端開發中,經常需要判斷瀏覽器或系統類別型,以解決相容性問題。

使用Javascript判斷瀏覽器和作業系統類型是一件很容易的事情,但如何最全面、最簡單的做出判斷,是不容易的,本文從Ext 2.2.1中摘錄了其判斷方法,這是一種目前最全面最簡潔的方法,包含了最新的IE8、Chrome瀏覽器、Air瀏覽的判斷,下面是代碼,並且包含了注釋:


var ua = navigator.userAgent.toLowerCase();
var isStrict = document.compatMode == "CSS1Compat", // 是否定義DOCUMENT類型
    isOpera = ua.indexOf("opera")>-1, // 是Opera
    isChrome = ua.indexOf("chrome")>-1, //是Chrome
    isSafari = !isChrome&&(/webkit|khtml/).test(ua), //是Safari
    isSafari3 = isSafari&&ua.indexOf("webkit/5")! = -1, // Safari3
    isIE = !isOpera&&ua.indexOf("msie")>-1, //IE6
    isIE7 = !isOpera&&ua.indexOf("msie 7")>-1, // IE7
    isIE8 = !isOpera&&ua.indexOf("msie 8")>-1, //IE8
    isGecko = !isSafari&&!isChrome&&ua.indexOf("gecko")>-1, // Gecko核心
    isGecko3 = isGecko&&ua.indexOf("rv:1.9")>-1, // Gecko3核心
    isBorderBox = isIE&&!isStrict, // 使用盒模型
    isWindows = (ua.indexOf("windows")! = -1||ua.indexOf("win32")! = -1), // 是Windows系統
    isMac = (ua.indexOf("macintosh")! = -1||ua.indexOf("mac os x")! = -1), // 是MacOS系統
    isAir = (ua.indexOf("adobeair")! = -1), // 是用Adobe Air瀏覽
    isLinux = (ua.indexOf("linux")! = -1), // 是Linux系統
    isSecure = window.location.href.toLowerCase().indexOf("https") === 0;  // 是SSL瀏覽
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.