关于APP常用检测
- 微信应用
- 2024-10-14 11:44:01
关于APP常用检测
本文介绍了检测设备、微信平台和app是否安装等
本文介绍了检测设备、微信平台和app是否安装等
检测设备、微信平台和app是否安装
// 检测是否安装了APPvar 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); }());