前言
本文为大家讲解的是关于Javascript中document.referrer
隐藏来源的方法探讨,感兴趣的同学参考下。
关于隐藏来路 Referrer 在某些情况下很有用,国外网赚界使用的非常广泛。比如流量提供方由于不想让联盟知道自己的流量来源,就需要隐藏自己来源网站的 referer。
document.referrer
document.referrer
是用来获取跳转链接的来源,正规的解释是:referrer
属性可返回载入当前文档的文档的 URL。
实际中使用在广告相关业务中较多,包括推广等。
举个例子:
比如我们从百度中跳转到w3c,那我们从w3c中可以获取到referrer,这个referrer就是
复制代码 代码如下:
https://www.baidu.com/s"htmlcode">
Referer:https://www.baidu.com/s"htmlcode">document.referrer https://www.baidu.com/link"color: #ff0000">清除来源
最常用的还是使用iframe来隐藏referrer。
下面来看一个例子:
<!DOCTYPE html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>document.referrer</title> </head> <body> <h1>隐藏referrer</h1> 跳转至百度(有referrer): <a target="_blank" href="https://www.baidu.com/">test</a> <script type="text/javascript"> var iframe = document.createElement('iframe'), html = '<!doctype html><head><meta charset="utf-8"></head><body>跳转至百度(无referrer):<a target="_blank" href="https://www.baidu.com/">referrer test</a></body>', src = 'javascript:document.write(window.frameElement.getAttribute(\'data-src\'))'; iframe.setAttribute('data-src', html); iframe.setAttribute('src', src); iframe.width = '500'; iframe.height = '300'; document.body.appendChild(iframe); </script> </body>效果如图:
当我们点击有referrer的a标签的时候,在百度页面我们可以看到referrer。
当我们点击ifame中嵌套的a标签的时候,在百度页面我们可以看到referrer为空字符串。
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流。
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
狼山资源网 Copyright www.pvsay.com
暂无“Javascript中document.referrer隐藏来源的方法”评论...