Any quick way to set an HTML text input (<input type=text />) to only allow numeric keystrokes(plus '.')?
| |||||||||||||||
feedback
|
|
I've used this, it's okay http://www.javascript-coder.com/html-form/javascript-form-validation.phtml | |||||
feedback
|
|
Use this DOM
And this script
| |||||||||||||||||||
feedback
|
|
HTML5 has | |||
|
feedback
|
|
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:
| |||||||
feedback
|
|
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!
| |||||||||||||||
feedback
|
|
And one more example, which works great for me:
Also attach to keypress event
And html:
| |||||
|
feedback
|
|
If you want to suggest to the device(maybe a mobile phone) between alpha or numeric you can use | ||||
|
feedback
|
|
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. | |||
|
feedback
|
|
HTML5 supports regexes, so you could use this:
Warning: Some browsers don't support this yet. | |||||||
feedback
|
|
this is an improved function :
| ||||
|
feedback
|
|
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. | ||||
|
feedback
|
|
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. | |||
|
feedback
|
|
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). | |||
feedback
|
|
wow everybody sends most important information. Thanks for sharing
| ||||
|
feedback
|
|
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:
| ||||
|
feedback
|
|
Best for me (with jquery) http://www.itgroup.com.ph/alphanumeric/ | |||||||
feedback
|
|
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. | |||
|
feedback
|
|
Just an other variant with jQuery using
| ||||
|
feedback
|
|
You can replace the Shurok function with:
| |||
|
feedback
|
|
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 | |||
|
feedback
|
|
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 :) | |||
|
feedback
|
|
Thanks guys this really help me! I found the perfert one really useful for database.
Then add the eventhandler:
| ||||
|
feedback
|