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