首页 > 代码库 > 判断客户端是微信端和app端

判断客户端是微信端和app端

有时我们会碰到这样一种情况,就是app和微信端用的是同一个项目,而有些部分在微信端需要隐藏而app不用,这样就只需要判断一下客户端是微信的情况了,代码如下:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>判断微信端</title>
	</head>
	<body>
		<div id="content">在微信端隐藏此文字</div>
<script>
       if(isWeiXin()){ 
	     document.getElementById("content").style.display = "none";
	} 
	function isWeiXin(){ 
		var ua = window.navigator.userAgent.toLowerCase(); 
		if(ua.match(/MicroMessenger/i) == ‘micromessenger‘){ 
			return true; 
		}else{ 
			return false; 
		} 
	}
</script>

  

</body> </html>

  

判断客户端是微信端和app端