<script>
// 跳转提示
if (is_weixn_qq()) {;
window.location.href = ‘https://c.pc.qq.com/middle.html?pfurl=’+window.location.href;
}
function is_weixn_qq(){
// 判断当前是否微信/QQ浏览器
var ua = navigator.userAgent;
var isWeixin = !!/MicroMessenger/i.test(ua);
var isQQ = !!/QQ\//i.test(ua);
if(isWeixin||isQQ){
return true;
}
return false;
}
</script>
![图片[1]-跳转浏览器提示代码-17玩源码](http://a.17wym.cn/wp-content/uploads/2022/10/Screenshot_2022-10-24-10-07-56-246_com.tencent.mm_.jpg)
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END