var ua = navigator.userAgent.toLowerCase();
if (/iphone|ipad|ipod/.test(ua))
{
alert("蘋果");
}
else if (/android/.test(ua))
{
alert("安卓");
}android
//判斷是不是微信瀏覽器
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)
{iphone
return true;//是
}
else
{
return false;//不是
}
}ip