Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
入力フィールドのある Web ページがありますが、ユーザーがその中に数値を入力できるようにしたいのですが、数値に 10.0.0 のように 2 つの小数を含めないでください。
function run(element) { var regex = /\d*\.?\d?/g; element.value = regex.exec(element.value); }
この関数を呼び出すkeypress
keypress
キープレスまたはキーアップのイベントを処理し、押されたキーがドットかどうかを確認できます。初めて入力する場合は、ブール センチネルを true に割り当て、以降のドットのキー押下イベントをキャンセルできます。