vote up 5 vote down star
2

Any quick way to set an HTML text input (<input type=text />) to only allow numeric keystrokes(plus '.')?

flag

50% accept rate

7 Answers

vote up 7 vote down check

I've used this, it's okay

http://www.javascript-coder.com/html-form/javascript-form-validation.phtml

link|flag
Very useful link, +1 I will accept this solution thanks for the other suggestions below guys – Jangwenyi Jan 22 at 15:05
vote up 6 vote down

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:

<script type="text/javascript">
function testField(field) {
    var regExpr = new RegExp("^\d*\.?\d*$");
    if (!regExpr.test(field.value)) {
      // Case of error
      field.value = "";
    }
}

</script>

<input type="text" ... onblur="testField(this);"/>
link|flag
Escape . with \. – AnthonyWJones Jan 22 at 16:12
vote up 0 vote down

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.

link|flag
vote up 0 vote down

You can attach to the key down event and then filter keys according to what you need, for example:

input id="FIELD_ID" name="FIELD_ID" onkeypress="return validateNUM(event,this);" type="text"

And the actual javascript handler would be:

    function validateNUM(e,field)
    {
		var key = getKeyEvent(e)
		if (specialKey(key)) return true;
		if ((key >= 48 && key <= 57) || (key == 46)){ 
			if (key != 46)
				return true;
			else{  
				if (field.value.search(/\./) == -1 && field.value.length > 0) 
					return true;
				else 
					return false;
			}       
		}

	function getKeyEvent(e){
		var keynum
		var keychar
		var numcheck
		if(window.event) // IE
			keynum = e.keyCode
		else if(e.which) // Netscape/Firefox/Opera
			keynum = e.which
		return keynum;
	}
link|flag
vote up 6 vote down

Use this DOM

<input type='text' onkeypress='validate(event)' />

And this script

function validate(evt) {
  var theEvent = evt || window.event;
  var key = theEvent.keyCode || theEvent.which;
  key = String.fromCharCode( key );
  var regex = /[0-9]|\./;
  if( !regex.test(key) ) {
    theEvent.returnValue = false;
    theEvent.preventDefault();
  }
}
link|flag
1  
german-settings on an eeepc 900. some key's for good usabiliy do not work: - backspace (keyCode: 8) - navigation key left and right (keyCode: 37, 38) copy and paste is also possible... – michl86 Sep 10 at 18:24
so modify per locale; same idea still works. – geowa4 Sep 10 at 19:11
change to if (theEvent.preventDefault) theEvent.preventDefault(); as it's not supported by all browsers – pstanton Oct 24 at 1:25
i know its not supported, and i don't care. setting returnValue to false is the alternative, which i do first. if preventDefault() throws an error, i don't care, since it's the last line in the function; no code will be skipped because of the error. – geowa4 Oct 24 at 17:33
vote up 0 vote down

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).

link|flag
vote up 3 vote down

HTML5 has <input type=number>, which sounds right for you. Currently, only Opera supports it natively, but there is a project that has a JavaScript implementation.

link|flag

Your Answer

Get an OpenID
or

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