//判断pc还是移动端
 var isM = function () {
  var ua = navigator.userAgent; /* navigator.userAgent 浏览器发送的用户代理标题 */
  if (ua.indexOf('Android') > -1 || ua.indexOf('iPhone') > -1 || ua.indexOf('iPod') > -1 || ua.indexOf('Symbian') > -1){ 
    return true;
  }else{     return false;   }  };

 

// 判断是否是微信
	function isFromWeiXin () {
		var ua = navigator.userAgent.toLowerCase();
		if (ua.match(/MicroMessenger/i) == "micromessenger") {
			return true;
		}
	}
	// 判断手机类型
	if (/android/i.test(navigator.userAgent)){
		//  android
		user="1";
	}
	if (/ipad|iphone|mac/i.test(navigator.userAgent)){
		//  ios
		user="0";
        }

  

相关文章:

  • 2021-10-05
  • 2021-09-06
  • 2021-11-26
  • 2021-11-26
  • 2021-11-26
  • 2021-09-06
  • 2021-12-08
  • 2021-12-18
猜你喜欢
  • 2021-11-26
  • 2021-11-26
  • 2021-11-26
  • 2021-11-26
  • 2021-11-26
  • 2018-04-08
  • 2021-09-06
  • 2021-11-26
相关资源
相似解决方案