function isandroid() {
var a = navigator.userAgent.indexOf('Android') > -1 || navigator.userAgent.indexOf('Adr') > -1;
return a > -1 ? true : false
}
//判断是否为安卓手机
function isios() {
return !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
}
//判断是否为ios手机
function isweixin() {
var ua = window.navigator.userAgent.toLowerCase();
if (ua.match(/MicroMessenger/i) == 'micromessenger') {
return true;
}
else
{
return false;
}
}
//判断是否是使用微信浏览器