areaObject.hostnameは、area要素(エリア要素)のhref属性値内の「ホスト名」を取得、もしくは、設定するプロパティ。
構文
取得
var $hostname = $areaElementReference.hostname;
戻り値
area要素(エリア要素)のhref属性値内の「ホスト名」。
設定
$areaElementReference.hostname = hostname;
- hostname
- ホスト名を指定。
サンプル
変更後のhostnameプロパティの値:
サンプルの動作について
- 「alphasis.info」ボタンをクリックすると、赤い丸のarea要素のhref属性値内のホスト名を「alphasis.info」に設定する。「変更後のhostnameプロパティの値:」の右横に「alphasis.info」と表示する。
- 「smiledrill.com」ボタンをクリックすると、赤い丸のarea要素のhref属性値内のホスト名を「smiledrill.com」に設定する。「変更後のhostnameプロパティの値:」の右横に「smiledrill.com」と表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function setHostname( $hostname ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.hostname = $hostname;
var $hostname = $elementReference.hostname;
document.getElementById( "sampleOutput" ).innerHTML = $hostname;
}
</script>
function setHostname( $hostname ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.hostname = $hostname;
var $hostname = $elementReference.hostname;
document.getElementById( "sampleOutput" ).innerHTML = $hostname;
}
</script>
HTML
<div>
<img src="http://alphasis.info/wp-content/uploads/2013/11/javascript-dom-area-sample.png" alt="サンプル" usemap="#sampleMap">
<map name="sampleMap">
<area id="sample" shape="circle" coords="100,75,50" href="http://alphasis.info/about/" target="_blank" />
</map>
</div>
<p>
<button onclick="setHostname('alphasis.info');">alphasis.info</button>
<button onclick="setHostname('smiledrill.com');">smiledrill.com</button>
</p>
<p>変更後のhostnameプロパティの値:<span id="sampleOutput"></span></p>
<img src="http://alphasis.info/wp-content/uploads/2013/11/javascript-dom-area-sample.png" alt="サンプル" usemap="#sampleMap">
<map name="sampleMap">
<area id="sample" shape="circle" coords="100,75,50" href="http://alphasis.info/about/" target="_blank" />
</map>
</div>
<p>
<button onclick="setHostname('alphasis.info');">alphasis.info</button>
<button onclick="setHostname('smiledrill.com');">smiledrill.com</button>
</p>
<p>変更後のhostnameプロパティの値:<span id="sampleOutput"></span></p>