判断是否是微信浏览器、微信端打开
var wx= (function(){
return navigator.userAgent.toLowerCase().indexOf(‘micromessenger‘) !== -1
}
)();
if(wx){
$(".android").click(function(){
alert("请使用其他浏览器打开!");
});
$(".pc").click(function(){
alert("请使用其他浏览器打开!");
});
}
原文地址:https://www.cnblogs.com/rockyjs/p/12002643.html
时间: 2024-11-12 04:06:50