ln10プロパティ Javaスクリプトのプロパティ methodプロパティ

locationプロパティ

locationプロパティは文書の完全なURLを表わします。

シンタックス

	
	
	objectName.location
	
	

オブジェクト

	
	
	<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>
	
	

関連したプロパティ



Copyright (C) 1996-2003 by Yasukazu Yokoi. All Rights Reserved.