只有当用户在上一个页面点击链接到达当前页面,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>
时间: 2024-10-09 21:40:33