anchorObject.typeは、a要素(アンカー要素)のtype属性の値を取得、もしくは、設定するプロパティ。
type属性には、リンク先ドキュメントのMIMEタイプを指定することができる。
構文
取得
var $type = $anchorElementReference.type;
戻り値
a要素(アンカー要素)のtype属性の値。
設定
$anchorElementReference.type = MIMEType;
- MIMEType
- リンク先のドキュメントのMIMEタイプを指定。
- 例:
text/html
:HTMLtext/xml
:XMLtext/css
:CSStext/plain
:テキストimage/png
:PNGimage/jpeg
:JPEGimage/gif
:GIFaudio/mpeg
:MP3video/mpeg
:MPEGvideo/mp4
:MP4application/pdf
:PDFapplication/x-shockwave-flash
:Flash
サンプル
変更後のtype属性の値:
a要素サンプルサンプルの動作について
- 「text/html」ボタンをクリックすると、「a要素サンプル」のtype属性値を「text/html」に設定する。「変更後のtypeプロパティの値:」の右横に「text/html」と表示する。
- 「text/plain」ボタンをクリックすると、「a要素サンプル」のtype属性値を「text/plain」に設定する。「変更後のtypeプロパティの値:」の右横に「text/plain」と表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function setType( $type ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.type = $type;
var $type = $elementReference.type;
document.getElementById( "sampleOutput" ).innerHTML = $type;
}
</script>
function setType( $type ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.type = $type;
var $type = $elementReference.type;
document.getElementById( "sampleOutput" ).innerHTML = $type;
}
</script>
HTML
<button onclick="setType('text/html');">text/html</button>
<button onclick="setType('text/plain');">text/plain</button>
<p>変更後のtype属性の値:<span id="sampleOutput"></span></p>
<a id="sample" href="http://alphasis.info/" target="_blank" type="text/html">a要素サンプル</a>
<button onclick="setType('text/plain');">text/plain</button>
<p>変更後のtype属性の値:<span id="sampleOutput"></span></p>
<a id="sample" href="http://alphasis.info/" target="_blank" type="text/html">a要素サンプル</a>