手揣网教程/应用软件/内容

对于APP常用检测

应用软件2024-05-21 阅读
[摘要]检测设备、微信平台和app是否安装// 检测是否安装了APPvar isappinstalled = (function () {return (location.search.indexOf(&q...
检测设备、微信平台和app是否安装

// 检测是否安装了APP
var isappinstalled = (function () {
        return (location.search.indexOf("isappinstalled=1") !== -1);
    }()),
    
    // 检测ios设备
    isIOS = (function () {
        return (navigator.userAgent.search(/iphone  ipad  ipod/i) !== -1);
    }()),

    // 检测微信平台
    isWeiXin = (function () {
        return (navigator.userAgent.toLowerCase().indexOf("micromessenger") !== -1);
    }());

通过设备平台区分电脑和手持设备

// 通过平台检测是否为PC端
var isPC = (function () {

    var system = {
        win: false,
        mac: false
    };
    var p = navigator.platform;


    system.win = p.indexOf("Win32") === 0;
    system.mac = p.indexOf("Mac") === 0;

    // iphone ipad ipod 的平台检测为 IOS

    // 小米手机用的是Xll或Linux系统平台
    // system.x11 = (p == “X11”)      (p.indexOf(“Linux”) == 0);

    if (system.win      system.mac) {
        return true;
    } else {
        return false;
    }
}());

if (isPc) {
    // go to pc web
} else {
    // go to mobile wap
}

以上就是关于APP常用检测的详细内容,更多请关注php中文网其它相关文章!

  • 微信
  • 分享

  • 小程序是一种不需要下载安装即可使用的应用,它实现了应用“触手可及”的梦想,用户扫一扫或者搜一下即可打开应用。

    ……

    标签:对于APP常用检测
    相关阅读