for example, I want the textfield input number only. my idea is when the user typing, it will call a javascript to check whether it is valid, if it is not valid, I delete the text which is just entered. But I think it is very complex to do so. Is there any simple way to do so?

link|improve this question

75% accept rate
feedback

4 Answers

up vote 0 down vote accepted

JQuery Masking could be a good choice: http://digitalbush.com/projects/masked-input-plugin/

link|improve this answer
feedback

Put a validation on submit.

link|improve this answer
feedback

The script to do this is here. It's a pretty common requirement.

http://javascript.internet.com/forms/validate-numeric-only.html

link|improve this answer
it have a bug... try to hold down the key.... it still can display the letter. – Ted Wong Oct 27 '09 at 13:04
feedback

I think, like o.k.w said, jQuery Masking would be a good choice because of 2 things:

  1. jQuery is solid and fast

  2. Masking is more user friendly than just deleting user input on the fly without any notification. Masking gives them a graphical reference of what type of input is expected and what the input might look like.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.