document.referrer

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了document.referrer相关的知识,希望对你有一定的参考价值。

只有当用户在上一个页面点击链接到达当前页面,document.referrer才会有值,当用户输入这一页的网址、通过response.redirect、用了ssl这些情况referrer都会为空。
     另外,其必须通过http协议使用。否则不能得到返回值,即值为空。
     可以借助这个属性来检查用户是否非法进入,如:
   <html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf8" />
    </head>
<script>
    var url=document.referrer;
    if(url=="")
    {
        alert("you can not link to  this page directly 你不能直接进入");
        setTimeout("window.location.href=‘body.html‘",500);
       
    }else
    {
        document.write("yes<br>");
        document.write(url);
    }
</script>
</html>

以上是关于document.referrer的主要内容,如果未能解决你的问题,请参考以下文章