Javascript檢測用戶端解析度,作業系統,瀏覽器,螢幕色多媒體訊息息

來源:互聯網
上載者:User

(function () {
    var resolution = "解析度:" + window.screen.width + "*" + window.screen.height;
    alert(resolution);
})();

(function () {
    var ua = window.navigator.userAgent;
    var osVersion = ua.split(";")[2];
    var osV = osVersion.substr(osVersion.length - 3, 3);
    var opName = "";
    switch (osV) {
        case "5.0":
            opName = "Win2000";
            break;
        case "5.1":
            opName = "WinXP";
            break;
        case "5.2":
            opName = "Win2003";
            break;
        case "6.1":
            opName = "Win 7";
            break;
        default:
            opName = "Other";
            break;
    }
    alert("作業系統:" + opName);
})();

(function () {
    var Sys = {};
    var ua = navigator.userAgent.toLowerCase();
    var s;
    (s = ua.match(/msie ([\d.]+)/)) ? Sys.ie = s[1] :
            (s = ua.match(/firefox\/([\d.]+)/)) ? Sys.firefox = s[1] :
            (s = ua.match(/chrome\/([\d.]+)/)) ? Sys.chrome = s[1] :
            (s = ua.match(/opera.([\d.]+)/)) ? Sys.opera = s[1] :
            (s = ua.match(/version\/([\d.]+).*safari/)) ? Sys.safari = s[1] : 0;
    if (Sys.ie)
        result = { Type: "ie", Ver: Sys.ie };
    else if (Sys.firefox)
        result = { Type: "firefox", Ver: Sys.firefox };
    else if (Sys.chrome)
        result = { Type: "chrome", Ver: Sys.chrome };
    else if (Sys.opera)
        result = { Type: "opera", Ver: Sys.opera };
    else if (Sys.safari)
        result = { Type: "safari", Ver: Sys.safari };
    else
        result = { Type: "unknown", Ver: "unknown" };
    //var result = {"Type":navigator.appName,"Ver":navigator.appVersion};

    alert("瀏覽器:" + result.Type + ",版本:" + result.Ver);
})();

(function () {
    var c;
    var cv = 16;
    if (cv != "Netscape")
        c = screen.colorDepth;
    else
        c = screen.pixelDepth;
    var cs = c;
    if (c == 4)
        cs = "4 位 16 色";
    if (c == 8)
        cs = "8 位 256 色";
    if (c == 16)
        cs = "16 位增強色";
    if (c > 16)
        cs = cs + " 位真彩色";
    alert(cs);
})();

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.