js判断IE浏览器及版本号

2021-03-10 09:27

阅读:374

标签:als   col   under   span   console   log   浏览器   ons   turn   

function underIe11() {
    function IEVersion() {
        if (document.documentMode) return document.documentMode;
    }
    if (IEVersion()) {
        console.log(‘当前IE浏览器版本号是‘, IEVersion());
        if (IEVersion() ) {
            return true;
        } else {
            return false;
        }
    } else {
        console.log(‘当前浏览器可能不是IE浏览器‘);
        return false;
    }
}

 

js判断IE浏览器及版本号

标签:als   col   under   span   console   log   浏览器   ons   turn   

原文地址:https://www.cnblogs.com/xxySsm/p/12856319.html


评论


亲,登录后才可以留言!