入力できる文字種を制限する


<form>
	<input type="text" onKeyup="this.value=this.value.replace(/[^0-9a-z]+/i,'')">
</form>

TOP