Any quick way to set an HTML text input (<input type=text />) to only allow numeric keystrokes(plus '.')?
|
2
|
|
||
|
|
|
|
I've used this, it's okay http://www.javascript-coder.com/html-form/javascript-form-validation.phtml |
||
|
|
|
2 solutions: Use a form validator (for example with jQuery validation plugin) Do a check during the onblur (i.e. when the user leaves the field) event of the input field, with the regular expression:
|
|||
|
|
|
You may try using the '''onkeydown''' event and cancel the event (event.preventDefault or something like that) when it's not one of the allowed keys. |
||
|
|
|
|
You can attach to the key down event and then filter keys according to what you need, for example:
And the actual javascript handler would be:
|
||
|
|
|
|
Use this DOM
And this script
|
||||||||||
|
|
|
Remember the regional differences (Euros use periods and commas in the reverse way as Americans), plus the minus sign (or the convention of wrapping a number in parentheses to indicate negative), plus exponential notation (I'm reaching on that one). |
||
|
|
|
|
HTML5 has |
||
|
|
