window.location.hostnameは、ホスト名を取得、もしくは、設定するプロパティ。
構文
<script type="text/javascript">
window.location.hostname;
</script>
window.location.hostname;
</script>
<script>~</script>
内であれば、window.
は、下記のように省略可能。
<script type="text/javascript">
location.hostname;
</script>
location.hostname;
</script>
戻り値
ホスト名。
サンプル
window.location.hostname:
サンプルの動作について
「window.location.hostname」ボタンをクリックすると、「window.location.hostname: 」の右横に、ホスト名を表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function getHostname() {
document.getElementById( "sampleOutput" ).innerHTML = window.location.hostname;
}
</script>
function getHostname() {
document.getElementById( "sampleOutput" ).innerHTML = window.location.hostname;
}
</script>
HTML
<p><button onclick="getHostname();">window.location.hostname</button></p>
<p>window.location.hostname: <span id="sampleOutput"></span></p>
<p>window.location.hostname: <span id="sampleOutput"></span></p>