如果你想不带refrer可以配置
三种方案
1、在A网站页面头部加入下面meta,所有跳转便不会携带referer
2、使用window.open来去除referrer
window.open('javascript:window.name;','location.replace("'+你的跳转url+'")');
3、使用iframe
document.body.appendChild(document.createElement('iframe')).src='javascript:"top.location.replace(\''+你的跳转url+'\')"';