ユーザ用ツール

サイト用ツール


13_javascript:05_input_rule_only_number_at_form

差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

両方とも前のリビジョン前のリビジョン
13_javascript:05_input_rule_only_number_at_form [2014/06/27 08:23] – 13_javascript:05_フォームで数字しか入力させない renamed to 13_javascript:05_input_rule_only_number_at_form matsui13_javascript:05_input_rule_only_number_at_form [2015/10/07 00:30] (現在) – 外部編集 127.0.0.1
行 1: 行 1:
 +====== 05 フォームで数字しか入力させない ======
  
 +<code>
 +<input type="text" name="id" value=""  style="ime-mode: disabled;" onkeypress='if(event.keycode<"0".charcodeAt(0) || "9".charcodeAt(0)<event.keycode)return false;'>
 +</code>