最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript判断是否用微信内置浏览器打开页面以及无痕跳转

运维笔记admin1浏览0评论

javascript判断是否用微信内置浏览器打开页面

if(navigator.platform.indexOf('Win32')!=-1){
    location.href="http://baidu";	}
    var ua = navigator.userAgent.toLowerCase();
if(ua.match(/MicroMessenger/i)!="micromessenger") {
    location.href="http://baidu";
}

页面跳转无痕浏览(跳转的链接使用document.referrer获取不到来源),如CNZZ上追寻来源显示为直接输入网址或标签

function jump(url) {
    var a = document.createElement('a');
    a.setAttribute('rel', 'noreferrer');
    a.setAttribute('id', 'm_noreferrer');
    a.setAttribute('href', url);
    document.body.appendChild(a);
    document.getElementById('m_noreferrer').click();
    document.body.removeChild(a);
}

发布评论

评论列表(0)

  1. 暂无评论