inputResetObject.typeプロパティ

inputResetObject.typeは、リセットボタン(type属性がresetであるinput要素)のtype属性の値を取得、もしくは、設定するプロパティ。

type属性には、input要素のタイプを指定できるのだが、リセットボタンにおけるtype属性の値は常に「reset」である。

構文

取得

var $type = $inputElementReference.type;

戻り値

リセットボタンのtype属性の値は「reset」なので、常に「reset」を返す。

設定

$inputElementReference.type = "reset";

type属性値に「reset」を指定することで、input要素がリセットボタンとなる。

サンプル

リセットボタンのtype属性の値:

【サンプルフォーム】
入力欄:

サンプルの動作について

「type属性値を取得」ボタンをクリックすると、「リセットボタンのtype属性の値:」の右横に「reset」と表示する。

サンプルのソースコード

JavaScript

<script type="text/javascript">
function getType( $type ) {
    var $elementReference = document.getElementById( "sample" );
    var $type = $elementReference.type;
    document.getElementById( "sampleOutput" ).innerHTML = $type;
}
</script>

HTML

<p>
    <button onclick="getType();">type属性値を取得</button>
</p>
<p>リセットボタンのtype属性の値:<span id="sampleOutput"></span></p>
<form id="sampleForm" method="get" action="http://alphasis.info/" target="_blank">
    【サンプルフォーム】
    <br />
    入力欄:<input type="text" name="s" value="JavaScript">
    <br />
    <input type="reset" value="リセット" id="sample">
</form>

スポンサード リンク

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