JavaScript Tutorial/Document/referrer

Материал из Web эксперт
Версия от 18:52, 25 мая 2010; (обсуждение)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

document.referrer

The referrer property contains the URL that was used to reach the current document.

If the URL was typed directly into the browser"s location field, this property will be empty.



<html>
    <script language="JavaScript">
    <!--
    document.write("<a href="",document.referrer,"">Go back</a>");
    -->
    </script>
</html>