当前位置:网站首页>Determine whether it is a web page opened on wechat

Determine whether it is a web page opened on wechat

2022-06-25 19:40:00 Bin daotianxia

var ua = window.navigator.userAgent.toLowerCase();
                if(ua.match(/MicroMessenger/i) == 'micromessenger'){
                    alert(' Opened by wechat ')
                }else{
                    alert(' Not opened by wechat ')
                }

 

 

Attach a picture , Open in browser

原网站

版权声明
本文为[Bin daotianxia]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202190518210564.html