Any quick way to set an HTML text input (<input type=text />) to only allow numeric keystrokes(plus '.')?
|
|
||||
| show 3 more comments |
|
I've used this, it's okay http://www.javascript-coder.com/html-form/javascript-form-validation.phtml If you are lucky enough to be HTML5, you might be able to get away with
Try input type=number to see the HTML5 version in action. But don't forget you still must do server side validation! |
||||
|
Use this DOM
And this script
|
|||||||||||||||||||||
|
|
I've searched long and hard for a good answer to this, and we desperately need
If you dislike the non-accepted character showing for a split-second before being erased, the method below is my solution. Note the numerous additional conditions, this is to avoid disabling all sorts of navigation and hotkeys. If anyone knows how to compactify this, let us know!
|
|||||||||||||
|
|
HTML5 has |
||||
|
|
|
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:
|
|||||
|
|
And one more example, which works great for me:
Also attach to keypress event
And html:
|
||||
|
|
|
HTML5 supports regexes, so you could use this:
Warning: Some browsers don't support this yet. |
|||||
|
|
If you want to suggest to the device(maybe a mobile phone) between alpha or numeric you can use |
||||
|
|
|
so simple.... // In Javascript Function (can use HTML or PHP).
In Your Form Input :
With input max. (these above, is allow for 12 Digit number) |
||||
|
|
|
A short and sweet implementation using jQuery and replace() instead of looking at event.keyCode or event.which:
Only small side effect that the typed letter appears momentarily and CTRL/CMD + A seems to behave a bit strange. |
||||
|
|
|
I opted to use a combination of the two answers mentioned here i.e.
and
|
||||
|
|
|
Just an other variant with jQuery using
|
||||
|
|
|
JavaScript
additional you could add comma, period and minus (,.-)
HTML
|
||||
|
|
|
this is an improved function :
|
||||
|
|
|
if you just want to only allow numbers 0-9 on a input, you can just remove all non numeric characters, without messing about charCodes and arrows ctrl and others kinds of keyboars, and this fix a string pasted or draged to a input. this have a advantage that you don't have to worry about browser messy of keyEvents. you can use this to allow letters and -,. but this cant deal with valid numbers like (0.1.4- is not a integer nor float), in this case this others guys solutions is better.
Javascript
yes, regex is less work but not faster than this. |
||||
|
|
|
The best way (allow ALL type of numbers - real negative, real positive, iinteger negative, integer positive) is:
|
||||
|
|
|
I tweaked it some, but it needs a lot more work to conform to the JavaScript weirding way.
And then it's called via:
|
||||
|
|
|
This is the extended version of geowa4's solution. Supports Usage:
If the inputs are dynamic use this:
|
||||
|
|
|
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). |
||||
|
|
|
You can replace the Shurok function with:
|
||||
|
|
|
Javascript code:
HTML code:
works perfectly because backspace keycode is 8 and regex expression doesnt let it so its a easy way to bypass the bug :) |
||||
|
|
|
another easy way with jquery:
now just set your each inputs class to Numeric, like:
|
||||
|
|
|
This removes any bad character instantly, allows only 1 dot, is short and allows backspace etc.
|
||||
|
|
|
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. |
||||
|
|
|
Thanks guys this really help me! I found the perfert one really useful for database.
Then add the eventhandler:
|
||||
|
|
|
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:
|
||||
|
|
|
Best for me (with jquery) http://www.itgroup.com.ph/alphanumeric/ |
||||
|
|
|
You can also compare input value (which is treated as string by default) to itself forced as numeric, like:
However, you need to bind that to event like keyup etc. |
||||
|
|
|
I realize an old post but i thought this could help someone. Recently I had to limit a text box to just 5 decimal places. In my case ALSO the users input had to be less than 0.1
Here is the doCheck function
Here is the same function except to force integer input
hope that helps someone |
||||
|
|
|
||||
|
|
<input type="text" onkeypress='return event.charCode >= 48 && event.charCode <= 57'></input>– Droogans Jan 20 at 20:13