inputTelObject.patternプロパティ

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

pattern属性には、電話番号入力欄(type属性がtelであるinput要素)に正規表現を使った入力規制を指定できる。

構文

取得

var $pattern = $inputElementReference.pattern;

戻り値

電話番号入力欄(type属性がtelであるinput要素)のpattern属性の値。

設定

$inputElementReference.pattern = 正規表現;
正規表現
正規表現を使った入力規制を指定。

サンプル

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

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

サンプルの動作について

  • 「[0-9]+」ボタンをクリックすると、電話番号入力欄には半角数字しか入力できないようにする。「電話番号入力欄のpattern属性の値:」の右横に「[0-9]+」と表示する。
  • 「[a-z]+」ボタンをクリックすると、電話番号入力欄には小文字の半角英字しか入力できないようにする。「電話番号入力欄のpattern属性の値:」の右横に「[a-z]+」と表示する。
  • 「[A-Z]+」ボタンをクリックすると、電話番号入力欄には大文字の半角英字しか入力できないようにする。「電話番号入力欄のpattern属性の値:」の右横に「[A-Z]+」と表示する。
  • 「[0-9A-Za-z]+」ボタンをクリックすると、電話番号入力欄には半角英数字しか入力できないようにする。「電話番号入力欄のpattern属性の値:」の右横に「[0-9A-Za-z]+」と表示する。

サンプルのソースコード

JavaScript

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

HTML

<p>
    <button onclick="setPattern('[0-9]+');">[0-9]+</button>
    <button onclick="setPattern('[a-z]+');">[a-z]+</button>
    <button onclick="setPattern('[A-Z]+');">[A-Z]+</button>
    <button onclick="setPattern('[0-9A-Za-z]+');">[0-9A-Za-z]+</button>
</p>
<p>電話番号入力欄のpattern属性の値:<span id="sampleOutput"></span></p>
<form id="sampleForm" method="get" action="http://alphasis.info/2014/01/javascript-dom-input-tel-pattern/" target="_blank">
    【サンプルフォーム】
    <br />
    電話番号入力欄:<input type="tel" id="sample" name="sampleName" pattern="[0-9]+">
    <br />
    <input type="submit" value="送信">
</form>

スポンサード リンク

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