inputSubmitObject.typeプロパティ

inputSubmitObject.typeは、送信ボタン(type属性がsubmitであるinput要素)のtype属性の値を取得、もしくは、設定するプロパティ。

type属性には、input要素のタイプを指定できるのだが、送信ボタンにおけるtype属性の値は常に「submit」である。

構文

取得

var $type = $inputElementReference.type;

戻り値

送信ボタンのtype属性の値は「submit」なので、常に「submit」を返す。

設定

$inputElementReference.type = "submit";

type属性値に「submit」を指定することで、input要素が送信ボタンとなる。

サンプル

送信ボタンのtype属性の値:

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

サンプルの動作について

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

サンプルのソースコード

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="submit" value="送信" id="sample">
</form>

スポンサード リンク

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