小表弟 发表于 2019-8-31 13:24
function isWx(){//判断是否为微信 var ua = window.navigator.userAgent.toLowerCase(); if(ua.match(/Mic ...
[JavaScript] 纯文本查看 复制代码 function isWx(){//判断是否为微信
var ua = window.navigator.userAgent.toLowerCase();
if(ua.match(/MicroMessenger/i) == 'micromessenger'){
return true;
}
return false;
};
if(isWx()){//判断浏览器是否微信
var html='<div class="box"><img src="images/head.png"></box>'
layer.open({//这里使用了layer的弹窗组件,你也可以自己写
type: 1,content: html,anim: 'up',
style: 'position:fixed; bottom:0; left:0; width: 100%; height: 100%; padding:0; border:none;'
});
return;
}
二、链接跳转
[JavaScript] 纯文本查看 复制代码 function isDevice(){//判断是android还是ios还是web
var ua = navigator.userAgent.toLowerCase();
if(ua.match(/iPhone\sOS/i) == "iphone os" || ua.match(/iPad/i)=="ipad"){//ios
return "iOS";
}
if(ua.match(/Android/i) == "android") {
return "Android";
}
return "Web";
};
header("Content-type:application/pdf");
header("Content-Disposition:attachment;filename='downloaded.pdf'"); |