判断Android系统和iPhone系统 QQ游览器 微信


var ua = navigator.userAgent.toLowerCase();
if (/iphone|ipad|ipod/.test(ua))
{
alert("苹果");

}
else if (/android/.test(ua))
{

alert("安卓");
}

 

//判断是否是微信浏览器
function isWeiXin(){
var ua = window.navigator.userAgent.toLowerCase();
if(ua.match(/MicroMessenger/i) == 'micromessenger'){
  return true;
  }else

  {
  return false;
  }
}

 


//判断是否是QQ游览器
function isqq(){
if(navigator.userAgent.indexOf('QQBrowser') !== -1)
{

return true;//是
}
else
{
return false;//不是

}
}

posted @ 2016-04-18 14:52  万物皆object  阅读(140)  评论(0编辑  收藏  举报