buttonObject.typeプロパティ

buttonObject.typeは、button要素(ボタン要素)のtype属性の値を取得、もしくは、設定するプロパティ。

type属性には、送信ボタンやリセットボタンなど、button要素(ボタン要素)のタイプを指定できる。

構文

取得

var $type = $buttonElementReference.type;

戻り値

button要素(ボタン要素)のtype属性の値。

設定

$buttonElementReference.type = buttonElementType;
buttonElementType
ボタンのタイプを下記の何れかの文字列で指定する。
  • button:普通のボタン。
  • submit:フォームの内容を送信するボタン。
  • reset:フォームの内容をリセットするボタン。
初期設定値は「submit」。

サンプル

サンプルボタンのtype属性の値:

サンプルの動作について

  • 「button」ボタンをクリックすると、「サンプルボタン」ボタンのtype属性値を「button」に設定する。「サンプルボタンのtype属性の値:」の右横に「button」と表示する。
  • 「submit」ボタンをクリックすると、「サンプルボタン」ボタンのtype属性値を「submit」に設定する。「サンプルボタンのtype属性の値:」の右横に「submit」と表示する。
  • 「reset」ボタンをクリックすると、「サンプルボタン」ボタンのtype属性値を「reset」に設定する。「サンプルボタンのtype属性の値:」の右横に「reset」と表示する。

サンプルのソースコード

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

<p>
    <button onclick="setType('button');">button</button>
    <button onclick="setType('submit');">submit</button>
    <button onclick="setType('reset');">reset</button>
</p>
<p>サンプルボタンのtype属性の値:<span id="sampleOutput"></span></p>
<p><button id="sample" type="button">サンプルボタン</button></p>

スポンサード リンク

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