inputTextObject.typeプロパティ

inputTextObject.typeは、1行テキスト入力欄(type属性がtextであるinput要素)のtype属性の値を取得、もしくは、設定するプロパティ。

type属性には、input要素のタイプを指定できるのだが、1行テキスト入力欄におけるtype属性の値は常に「text」である。

構文

取得

var $type = $inputElementReference.type;

戻り値

1行テキスト入力欄のtype属性の値は「text」なので、常に「text」を返す。

設定

$inputElementReference.type = "text";

type属性値に「text」を指定することで、input要素が1行テキスト入力欄となる。

サンプル

サンプル入力欄のtype属性の値:

サンプル入力欄:

サンプルの動作について

「type属性値を取得」ボタンをクリックすると、「サンプル入力欄のtype属性の値:」の右横に「text」と表示する。

サンプルのソースコード

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>
<p>サンプル入力欄:<input type="text" id="sample"></p>

スポンサード リンク

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