window.location.toString()は、URLを返すメソッド。
構文
<script type="text/javascript">
window.location.toString();
</script>
window.location.toString();
</script>
<script>~</script>
内であれば、window.
は、下記のように省略可能。
<script type="text/javascript">
location.toString();
</script>
location.toString();
</script>
戻り値
URL。
サンプル
window.location.toString():
サンプルの動作について
「window.location.toString()」ボタンをクリックすると、「window.location.toString(): 」の横に「http://alphasis.info/2013/07/javascript-locationObject-toString/」と表示。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function getToString() {
document.getElementById( "sampleOutput" ).innerHTML = window.location.toString();
}
</script>
function getToString() {
document.getElementById( "sampleOutput" ).innerHTML = window.location.toString();
}
</script>
HTML
<p><button onclick="getToString();">window.location.toString()</button></p>
<p>window.location.toString(): <span id="sampleOutput"></span></p>
<p>window.location.toString(): <span id="sampleOutput"></span></p>