function isWeiXin(){ var ua = window.navigator.userAgent.toLowerCase(); if(ua.match(/MicroMessenger/i) == 'micromessenger'){ return true; }else{ return false; } }
$(function(){ if(isWeiXin()){ $("body").html("微信打开"); }else { $("body").html("其它浏览器打开"); } })
|