areaObject.hashは、area要素(エリア要素)のhref属性値内のハッシュマーク「#」以降の文字列を取得、もしくは、設定するプロパティ。
構文
取得
var $hash = $areaElementReference.hash;
戻り値
area要素(エリア要素)のhref属性値内のハッシュマーク「#」以降の文字列。
設定
$areaElementReference.hash = 文字列;
- 文字列
- ハッシュマーク「#」以降の文字列を指定。
サンプル
変更後のhashプロパティの値:
サンプルの動作について
- 「sample」ボタンをクリックすると、赤い丸のarea要素のhref属性値内のハッシュマーク「#」以降を「sample」に設定する。「変更後のhashプロパティの値:」の右横に「#sample」と表示する。
- 「sampleOutput」ボタンをクリックすると、赤い丸のarea要素のhref属性値内のハッシュマーク「#」以降を「sampleOutput」に設定する。「変更後のhashプロパティの値:」の右横に「#sampleOutput」と表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function setHash( $hash ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.hash = $hash;
var $hash = $elementReference.hash;
document.getElementById( "sampleOutput" ).innerHTML = $hash;
}
</script>
function setHash( $hash ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.hash = $hash;
var $hash = $elementReference.hash;
document.getElementById( "sampleOutput" ).innerHTML = $hash;
}
</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="#sample" target="_blank" />
</map>
</div>
<p>
<button onclick="setHash('sample');">sample</button>
<button onclick="setHash('sampleOutput');">sampleOutput</button>
</p>
<p>変更後のhashプロパティの値:<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="#sample" target="_blank" />
</map>
</div>
<p>
<button onclick="setHash('sample');">sample</button>
<button onclick="setHash('sampleOutput');">sampleOutput</button>
</p>
<p>変更後のhashプロパティの値:<span id="sampleOutput"></span></p>