areaObject.hrefは、area要素(エリア要素)のhref属性の値を取得、もしくは、設定するプロパティ。
href属性には、リンク先を指定することができる。
構文
取得
var $href = $areaElementReference.href;
戻り値
area要素(エリア要素)のhref属性の値。
設定
$areaElementReference.href = "URL";
- URL
- リンク先URLを指定。
サンプル
変更後のhref属性の値:
サンプルの動作について
- 「アルファシス」ボタンをクリックすると、赤い丸のarea要素のhref属性値を「http://alphasis.info/」に設定する。「変更後のhref属性の値:」の右横に「http://alphasis.info/」と表示する。
- 「JavaScript」ボタンをクリックすると、赤い丸のarea要素のhref属性値を「http://alphasis.info/javascript/」に設定する。「変更後のhref属性の値:」の右横に「http://alphasis.info/javascript/」と表示する。
- 「jQuery API」ボタンをクリックすると、赤い丸のarea要素のhref属性値を「http://alphasis.info/jquery-api/」に設定する。「変更後のhref属性の値:」の右横に「http://alphasis.info/jquery-api/」と表示する。
- 「jQuery UI」ボタンをクリックすると、赤い丸のarea要素のhref属性値を「http://alphasis.info/jquery-ui/」に設定する。「変更後のhref属性の値:」の右横に「http://alphasis.info/jquery-ui/」と表示する。
- 「jQuery プラグイン」ボタンをクリックすると、赤い丸のarea要素のhref属性値を「http://alphasis.info/jquery-plugins/」に設定する。「変更後のhref属性の値:」の右横に「http://alphasis.info/jquery-plugins/」と表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function setHref( $href ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.href = $href;
var $href = $elementReference.href;
document.getElementById( "sampleOutput" ).innerHTML = $href;
}
</script>
function setHref( $href ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.href = $href;
var $href = $elementReference.href;
document.getElementById( "sampleOutput" ).innerHTML = $href;
}
</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/" target="_blank" />
</map>
</div>
<p>
<button onclick="setHref('http://alphasis.info/');">アルファシス</button>
<button onclick="setHref('http://alphasis.info/javascript/');">JavaScript</button>
<button onclick="setHref('http://alphasis.info/jquery-api/');">jQuery API</button>
<button onclick="setHref('http://alphasis.info/jquery-ui/');">jQuery UI</button>
<button onclick="setHref('http://alphasis.info/jquery-plugins/');">jQuery プラグイン</button>
</p>
<p>変更後のhref属性の値:<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/" target="_blank" />
</map>
</div>
<p>
<button onclick="setHref('http://alphasis.info/');">アルファシス</button>
<button onclick="setHref('http://alphasis.info/javascript/');">JavaScript</button>
<button onclick="setHref('http://alphasis.info/jquery-api/');">jQuery API</button>
<button onclick="setHref('http://alphasis.info/jquery-ui/');">jQuery UI</button>
<button onclick="setHref('http://alphasis.info/jquery-plugins/');">jQuery プラグイン</button>
</p>
<p>変更後のhref属性の値:<span id="sampleOutput"></span></p>