zl程序教程

您现在的位置是:首页 >  工具

当前栏目

如果判断浏览器是微信内置浏览器

微信浏览器 判断 内置 如果
2023-09-11 14:19:35 时间
<script type="text/javascript">
		$(document).ready(function(){
	    		var ua = navigator.userAgent.toLowerCase();  				
			    if(ua.match(/MicroMessenger/i)=="micromessenger") { 			       
			        //alert("true");
			    } else {
			    	//alert("false");
			    	window.location.href="http://2014.chinayq.com"; 		       
			    }  	
	     });	</script>

引用以上代码即可判断,如果非微信内置浏览器,可以跳转到其它提示网站。