这是两个示例页面
第 1 页:
<html>
<title>Page 1</title>
<body>
This is page 1
<a href="page2.html">Click to go to page 2 </a>
</body>
</html>
第2页:
<html>
<title>Page 2</title>
<script>
function test()
{
alert(document.referrer);
}
</script>
<body onload="javascript:test();">
This is page 2
<a href="page1.html">Click to go to page 1 </a>
</body>
</html>
在 safari 中,当从 Page1 单击链接时,document.referrer 似乎不起作用/保持值。
它在 Mozilla 中运行良好。