inputTelObject.typeプロパティ

inputTelObject.typeは、電話番号入力欄(type属性がtelであるinput要素)のtype属性の値を取得、もしくは、設定するプロパティ。

type属性には、input要素のタイプを指定できるのだが、電話番号入力欄におけるtype属性の値は常に「tel」である。

構文

取得

var $type = $inputElementReference.type;

戻り値

電話番号入力欄のtype属性の値は「tel」なので、常に「tel」を返す。

設定

$inputElementReference.type = "tel";

type属性値に「tel」を指定することで、input要素が電話番号入力欄となる。

サンプル

電話番号入力欄のtype属性の値:

【サンプルフォーム】
電話番号入力欄:

サンプルの動作について

「type属性値を取得」ボタンをクリックすると、「電話番号入力欄のtype属性の値:」の右横に「tel」と表示する。

サンプルのソースコード

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/2014/01/javascript-dom-input-tel-type/" target="_blank">
    【サンプルフォーム】
    <br />
    電話番号入力欄:<input type="tel" name="phoneNumber" id="sample" pattern="[0-9-]+" title="電話番号は半角の数字で入力して下さい。">
    <br />
    <input type="submit" value="送信">
</form>

スポンサード リンク

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