H5判断来源

1 判断来源微信

```

function is_weixn(){  

var ua = navigator.userAgent.toLowerCase();  

if(ua.match(/MicroMessenger/i)=="micromessenger") {  

return true;  

}else {  

return false;  

    }  

}  

```

你可能感兴趣的:(H5判断来源)