• 【js 是否手机】JavaScript判读当前是否是手机端


    11

    function getMobileData() {
        var ismobile = false;
        browser = {
            versions: function () {
                var u = navigator.userAgent, app = navigator.appVersion;
                return {
                    trident: u.indexOf('Trident') > -1, //IE内核
                    presto: u.indexOf('Presto') > -1, //opera内核
                    webKit: u.indexOf('AppleWebKit') > -1, //苹果、谷歌内核
                    gecko: u.indexOf('Gecko') > -1 && u.indexOf('KHTML') == -1, //火狐内核
                    mobile: !!u.match(/AppleWebKit.*Mobile.*/) || !!u.match(/AppleWebKit/), //是否为移动终端
                    ios: !!u.match(/(i[^;]+;( U;)? CPU.+Mac OS X/), //ios终端
                    android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1, //android终端或者uc浏览器
                    iPhone: u.indexOf('iPhone') > -1 || u.indexOf('Mac') > -1, //是否为iPhone或者QQHD浏览器
                    iPad: u.indexOf('iPad') > -1, //是否iPad
                    webApp: u.indexOf('Safari') == -1 //是否web应该程序,没有头部与底部
                };
            }(),
            language: (navigator.browserLanguage || navigator.language).toLowerCase()
        }
        ismobile = browser.versions.mobile;
        return ismobile;
    }

     2

        function IsPC() {
            var userAgentInfo = navigator.userAgent;
            var Agents = ["Android", "iPhone",
                "SymbianOS", "Windows Phone",
                "iPad", "iPod"
            ];
            var flag = true;
            for (var v = 0; v < Agents.length; v++) {
                if (userAgentInfo.indexOf(Agents[v]) > 0) {
                    flag = false;
                    break;
                }
            }
            return flag;
        }

  • 相关阅读:
    单片机中的看门狗是什么东西,有什么作用
    PCB过孔孔径与通流能力
    新世代内存LPDDR5与LPDDR4比较
    OrCAD Capture创建层电路Hierarchical Block仿真
    《饮食术1》
    android hook之ELF hook
    关于windows中一些消息处理相关API的使用
    android的双亲委派模型
    windows导出表的函数转发
    android反调试技术
  • 原文地址:https://www.cnblogs.com/kikyoqiang/p/12506518.html
Copyright © 2020-2023  润新知