document.locationは、現在のドキュメントのURLを返すプロパティ。
構文
$locationObject = document.location;
戻り値
現在のドキュメントのURL。
サンプル
document.location:
サンプルの動作について
「location」ボタンをクリックすると、「document.location:」の右横に「」と表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function sampleGetLocation() {
document.getElementById( "sample" ).innerHTML = document.location;
}
</script>
function sampleGetLocation() {
document.getElementById( "sample" ).innerHTML = document.location;
}
</script>
HTML
<button onclick="sampleGetLocation();">location</button>
<div style="margin: 1em;">
document.location:<span id="sample"></span>
</div>
<div style="margin: 1em;">
document.location:<span id="sample"></span>
</div>