JavaScript Tutorial/Document/referrer — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 08:24, 26 мая 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>