2 つのサンプル ページを次に示します。
ページ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 では、ページ 1 からリンクをクリックすると、document.referrer が機能しないか、値を保持していないようです。
Mozilla では問題なく動作します。