摘要:有时候我们需要用户只能通过在微信中打开链接地址,加入以下代码就可以了

1
2
3
4
5
6
7
8
9
var isWechat= (function(){
return navigator.userAgent.toLowerCase().indexOf('micromessenger') !== -1
}
)();
if(isWechat){
alert("是在微信中打开。");
}else {
alert("不是在微信中打开。");
}