美文网首页
JS判断使用的设备

JS判断使用的设备

作者: 等级7 | 来源:发表于2022-06-30 10:05 被阅读0次
/** 
     * @param {*} 判断使用设备类型
    */
    myFacility(){
        var ua = navigator.userAgent;
        var ipad = ua.match(/(iPad).*OS\s([\d_]+)/),//平板模式
        isIphone = !ipad && ua.match(/(iPhone\sOS)\s([\d_]+)/),//苹果模式
        isAndroid = ua.match(/(Android)\s+([\d.]+)/);//安卓模式
        if(ipad) {
            return "ipad";
        }else if(isIphone) {
            return "Iphone";
        }else if(isAndroid) {
            return "android";
        }else{
            return "browser";
        }
    },

相关文章

网友评论

      本文标题:JS判断使用的设备

      本文链接:https://www.haomeiwen.com/subject/cgrfbrtx.html