码迷,mamicode.com
首页 > 移动开发 > 详细

js判断是否是app,及版本号

时间:2018-10-25 16:28:16      阅读:414      评论:0      收藏:0      [点我收藏+]

标签:let   str   rev   turn   pve   code   regexp   substr   null   

判断是否是android,ios,qq,wetchat

export  const Config = {};

Config.ua = navigator.userAgent.toLowerCase();

Config.isiOS=()=>{
    return /(iphone|ipad|ipod|ios)/i.test(Config.ua)
}

Config.isAndroid=()=>{
    return /(android)/i.test(Config.ua)
}

Config.isLaobaiAndroid = () => {
    return /laobaiapp android/.test(Config.ua);
};

Config.isLaobaiiOS = () => {
    return /laobaiapp ios/.test(Config.ua)
};

Config.isWeChat = () => {
    return /micromessenger/.test(Config.ua);
};

Config.isQQ = () => {
    return /qq/.test(Config.ua);
};

export default Config;

判断当前app的版本号

const getAppVerison = (expStr) => {
    if (expStr == null) return null;
    const ua = navigator.userAgent.toLowerCase();
    const patt = new RegExp(expStr, "g");
    let lastIndex = null;
    while ((patt.exec(ua)) != null) {
        lastIndex = patt.lastIndex
    }
    if (lastIndex == null) {
        return null
    }
    return ua.substr(lastIndex)
};

对比app版本号,有时候版本不够需提示更新

export  const compareVersionEle = (currVersion, targetVerison) => {
    if (!currVersion || !targetVerison) return false;
    const curr = currVersion.split(‘.‘);
    const target = targetVerison.split(‘.‘);
    for (let i = 0; i < curr.length; i++) {
        if (parseInt(curr[i]) > parseInt(target[i])) {
            return true
        }
        if (parseInt(curr[i]) < parseInt(target[i])) {
            return false
        }
        //相等继续
        //parseInt(curr[i]) == parseInt(target[i])  continue
    }
    return true
};

 

js判断是否是app,及版本号

标签:let   str   rev   turn   pve   code   regexp   substr   null   

原文地址:https://www.cnblogs.com/mosquito18/p/9850422.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!