文本框限制输入
1.文本框只能輸入數(shù)字代碼(小數(shù)點(diǎn)也不能輸入)
◎ <input οnkeyup="this.value=this.value.replace(//D/g,'')" onafterpaste="this.value=this.value.replace(//D/g,'')">
---------------------------------------------------------------
◎ <input name=txt1 οnchange="if(//D/.test(this.value)){alert('只能輸入數(shù)字');this.value='';}">
---------------------------------------------------------------
◎ <input οnkeyup="if(isNaN(value))execCommand('undo')" onafterpaste="if(isNaN(value))execCommand('undo')">
2.只能輸入數(shù)字,能輸小數(shù)點(diǎn).
<input οnkeyup="if(isNaN(value))execCommand('undo')" onafterpaste="if(isNaN(value))execCommand('undo')">
<input name=txt1 οnchange="if(//D/.test(this.value)){alert('只能輸入數(shù)字');this.value='';}">
3.數(shù)字和小數(shù)點(diǎn)方法二
<input type=text t_value="" o_value="" οnkeypress="if(!this.value.match(/^[/+/-]?/d*?/.?/d*?$/))this.value=this.t_value;else this.t_value=this.value;if(this.value.match(/^(?:[/+/-]?/d+(?:/./d+)?)?$/))this.o_value=this.value" οnkeyup="if(!this.value.match(/^[/+/-]?/d*?/.?/d*?$/))this.value=this.t_value;else this.t_value=this.value;if(this.value.match(/^(?:[/+/-]?/d+(?:/./d+)?)?$/))this.o_value=this.value" οnblur="if(!this.value.match(/^(?:[/+/-]?/d+(?:/./d+)?|/./d*?)?$/))this.value=this.o_value;else{if(this.value.match(/^/./d+$/))this.value=0+this.value;if(this.value.match(/^/.$/))this.value=0;this.o_value=this.value}">
4.只能輸入字母和漢字
<input οnkeyup="value=value.replace(/[/d]/g,'') "onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[/d]/g,''))" maxlength=10 name="Numbers">
5.只能輸入英文字母和數(shù)字,不能輸入中文
<input οnkeyup="value=value.replace(/[^/w/.//]/ig,'')">
6.只能輸入數(shù)字和英文<font color="Red">chun</font>
<input onKeyUp="value=value.replace(/[^/d|chun]/g,'')">
7.小數(shù)點(diǎn)后只能有最多兩位(數(shù)字,中文都可輸入),不能輸入字母和運(yùn)算符號(hào):
<input onKeyPress="if((event.keyCode<48 || event.keyCode>57) && event.keyCode!=46 || //./d/d$/.test(value))event.returnValue=false">
8.小數(shù)點(diǎn)后只能有最多兩位(數(shù)字,字母,中文都可輸入),可以輸入運(yùn)算符號(hào):
<input οnkeyup="this.value=this.value.replace(/^(/-)*(/d+)/.(/d/d).*$/,'$1$2.$3')">
注意:
1.onblur:當(dāng)光標(biāo)離開(kāi)文本框的時(shí)候觸發(fā)
2.onkeyup:當(dāng)向文本框中輸入文字的時(shí)候觸發(fā)
3.onchange:當(dāng)文本中的內(nèi)容變化的時(shí)候。
自我感覺(jué)當(dāng)判斷文本框中的內(nèi)容必須為數(shù)字等的時(shí)候,用onblur比較好。
?
?
1.只能輸入數(shù)字和英文的: ?
? <input ? οnkeyup="value=value.replace(/[/W]/g,'') ? "onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^/d]/g,''))"> ?
? 2.只能輸入數(shù)字的: ?
? <input ? οnkeyup="value=value.replace(/[^/d]/g,'') ? "onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^/d]/g,''))"> ?
? 3.只能輸入全角的: ?
? <input ? οnkeyup="value=value.replace(/[^/uFF00-/uFFFF]/g,'')" ? onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^/uFF00-/uFFFF]/g,''))"> ?
? 4.只能輸入漢字的: ?
? <input ? οnkeyup="value=value.replace(/[^/u4E00-/u9FA5]/g,'')" ? onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^/u4E00-/u9FA5]/g,''))">
?
?
?
?
?
functionCheckEmail(myfrm)
{
varvmail,vstr;
vstr="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_@.";
vmail=myfrm.value;
if(vmail!=""){
for(vari=0;i<vmail.length;i)
{
varletter=vmail.charAt(i).toLowerCase();
if(vstr.indexOf(letter)!=-1)
continue;
alert("E-Mail中含有無(wú)效字符:"letter);
myfrm.focus();
returnfalse;
break;
}
if(vmail.indexOf("@")==-1)
{
alert("Email地址無(wú)效!");
returnfalse;
}
if(vmail.indexOf(".")==-1)
{
alert("Email地址無(wú)效!");
returnfalse;
}
}
}
總結(jié)