js 판단 브 라 우 저 커 널 및 버 전 비교

1532 단어 js
//        
function whatBrowser() {
    var userAgent = navigator.userAgent.toLowerCase();
    if (isChromium(userAgent)) {
        //...
    } else if (isWebkit(userAgent)) {
        //...
    } else {
       // ...
    }
}


//      webkit     
function isWebkit(userAgent) {
    if (userAgent.indexOf("applewebkit/") < 0)
        return false;
    return true;
}

//      chrome     
function isChromium(userAgent) {
    var chromium = "mozilla/&&applewebkit/&&chrome/&&safari/".split("&&");
    for (var i = 0; i < chromium.length; i++)
        if (userAgent.indexOf(chromium[i]) < 0)
            return false;
    return true;
}
/*
 *     :                
 *     :               
 *      :    1              
 *                 0          
 *                -1              
 */
function cmpVersion(szV1, szV2) {
    var arrV1 = szV1.split(".");
    var arrV2 = szV2.split(".");

    for (var i = 0; i < arrV1.length && i < arrV2.length; i++) {
        if (parseInt(arrV1[i]) > parseInt(arrV2[i]))
            return (1);
        else if (parseInt(arrV1[i]) < parseInt(arrV2[i]))
            return (-1);
    }
    if (arrV1.length == arrV2.length) {
        return (0);
    } else if (arrV1.length > arrV2.length) {
        return (1);
    } else {
        if (arrV1.length == 2 && arrV1[1] == 0) {
            return (1);
        } else {
            return (-1);
        }
    }
}

좋은 웹페이지 즐겨찾기