|
First, copy this JavaScript code into the <HEAD>
<SCRIPT TYPE="text/javascript">
<!--
// copyright 1999 Idocs, Inc. http://www.idocs.com
// Distribute this script freely but keep this notice in place
function letternumber(e)
{
var key;
var keychar;
if (window.event)
key = window.event.keyCode;
else if (e)
key = e.which;
else
return true;
keychar = String.fromCharCode(key);
keychar = keychar.toLowerCase();
// control keys
if ((key==null) || (key==0) || (key==8) ||
(key==9) || (key==13) || (key==27) )
return true;
// alphas and numbers
else if ((("abcdefghijklmnopqrstuvwxyz0123456789").indexOf(keychar) > -1))
return true;
else
return false;
}
//-->
</SCRIPT>
Using this script we can set a field as alphanumeric using the
onKeyPressonKeyPressreturn in the attribute or the technique won't work..
<FORM ACTION="../cgi-bin/mycgi.pl" METHOD=POST> User ID: <INPUT NAME=ID MAXLENGTH=8 onKeyPress="return letternumber(event)"> <INPUT TYPE=SUBMIT VALUE="go"> </FORM>
This creates this form:
The next page shows a similar technique which allows you to restrict a field to just numbers.
Copyright 1997-2002 Idocs Inc. Content in this guide is offered freely to the public under the terms of the Open Content License and the Open Publication License. Contents may be redistributed or republished freely under these terms so long as credit to the original creator and contributors is maintained.