判斷是否是微信瀏覽器、微信端打開
var wx= (function(){
return navigator.userAgent.toLowerCase().indexOf('micromessenger') !== -1
}
)();
if(wx){
$(".android").click(function(){
alert("請使用其他瀏覽器打開!");
});
$(".pc").click(function(){
alert("請使用其他瀏覽器打開!");
});
}