[摘要]检测设备、微信平台和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);
}());