locationプロパティ
locationプロパティは文書の完全なURLを表わします。
シンタックス
objectName.locationオブジェクト
- documentオブジェクト
<script> document.write("■この文書の完全なURL名:<br>" + document.location + "<p>"); document.write("■1つ前の文書の完全なURL名:<br>" + document.referrer + "<p>"); document.write("■この文書のタイトル:<br>" + document.title); </script>
上記のlocationプロパティを使った例は、hrefプロパティを使った次の例と同じ意味になります。
<script> document.write(location.href); </script>
関連したプロパティ
- cookieプロパティ
- lastModifiedプロパティ
- referrerプロパティ
- titleプロパティ