anchorObject.typeプロパティ

anchorObject.typeは、a要素(アンカー要素)のtype属性の値を取得、もしくは、設定するプロパティ。

type属性には、リンク先ドキュメントのMIMEタイプを指定することができる。

構文

取得

var $type = $anchorElementReference.type;

戻り値

a要素(アンカー要素)のtype属性の値。

設定

$anchorElementReference.type = MIMEType;
MIMEType
リンク先のドキュメントのMIMEタイプを指定。
例:
  • text/html:HTML
  • text/xml:XML
  • text/css:CSS
  • text/plain:テキスト
  • image/png:PNG
  • image/jpeg:JPEG
  • image/gif:GIF
  • audio/mpeg:MP3
  • video/mpeg:MPEG
  • video/mp4:MP4
  • application/pdf:PDF
  • application/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>

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>

スポンサード リンク

カテゴリー: Anchorオブジェクト, DOM, JavaScript, リファレンス パーマリンク