瀏覽器
var u = navigator.userAgent, app = navigator.appVersion;
IE: u.indexOf('Trident') > -1, //IE內(nèi)核
opera: u.indexOf('Presto') > -1, //opera內(nèi)核
webkit: u.indexOf('AppleWebKit') > -1, //蘋(píng)果倚搬、谷歌內(nèi)核
firefox: u.indexOf('Gecko') > -1 && u.indexOf('KHTML') == -1,//火狐內(nèi)核
mobile: !!u.match(/AppleWebKit.*Mobile.*/), //是否為移動(dòng)終端
ios: !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/), //ios終端
android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1, //android終端或者uc瀏覽器
iPhone: u.indexOf('iPhone') > -1 , //是否為iPhone或者QQHD瀏覽器
iPad: u.indexOf('iPad') > -1, //是否iPad
webApp: u.indexOf('Safari') == -1, //是否web應(yīng)該程序疚察,沒(méi)有頭部與底部
weixin: u.indexOf('MicroMessenger') > -1, //是否微信 (2015-01-22新增)
qq: u.match(/\sQQ/i) == " qq" //是否QQ