方法一:(微信官方js判断做法)
1 | var ua = navigator.userAgent.toLowerCase(); |
方法二:(js判断做法)
1 | function is_weixn(){ |
方法三:(js判断做法)
1 | var is_weixin = (function(){return navigator.userAgent.toLowerCase().indexOf('micromessenger') !== -1})(); |
方法四:(利用PHP判断)
1 | function is_weixin(){ |