input輸入框只能輸入數(shù)字,只能輸入字母數(shù)字組合

輸入大小寫字母、數(shù)字、下劃線:
<input type="text" onkeyup="this.value=this.value.replace(/[^\w_]/g,'');">

輸入小寫字母、數(shù)字、下劃線:
<input type="text" onkeyup="this.value=this.value.replace(/[^a-z0-9_]/g,'');">

輸入數(shù)字和點(diǎn)
<input type="text" onkeyup="value=value.replace(/[^\d.]/g,'')">

輸入中文:
<input type="text" onkeyup="this.value=this.value.replace(/[^\u4e00-\u9fa5]/g,'')">

輸入數(shù)字:
<input type="text" onkeyup="this.value=this.value.replace(/\D/g,'')">

輸入英文:
<input type="text" onkeyup="this.value=this.value.replace(/[^a-zA-Z]/g,'')">

輸入中文、數(shù)字、英文:
<input onkeyup="value=value.replace(/[^\w\u4E00-\u9FA5]/g, '')">

輸入數(shù)字和字母:
<input onKeyUp="value=value.replace(/[\W]/g,'')">

除了英文的標(biāo)點(diǎn)符號(hào)以外,其他的都可以中文,英文字母,數(shù)字,中文標(biāo)點(diǎn)
<input type="text" onkeyup="this.value=this.value.replace(/[!@#$%^&*()-=+]/g,'')">

只能輸入數(shù)字代碼(小數(shù)點(diǎn)也不能輸入)
<input onkeyup="this.value=this.value.replace(/\D/g,'')" onafterpaste="this.value=this.value.replace(/\D/g,'')">

只能輸入數(shù)字,能輸小數(shù)點(diǎn).
<input onkeyup="if(isNaN(value))execCommand('undo')" onafterpaste="if(isNaN(value))execCommand('undo')">
<input name=txt1 onchange="if(/\D/.test(this.value)){alert('只能輸入數(shù)字');this.value='';}">

數(shù)字和小數(shù)點(diǎn)方法二
<input type=text t_value="" o_value="" onkeypress="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" onkeyup="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" onblur="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}">

只能輸入字母和漢字
<input onkeyup="value=value.replace(/[\d]/g,'') "onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[\d]/g,''))" maxlength=10 name="Numbers">

只能輸入英文字母和數(shù)字,不能輸入中文
<input onkeyup="value=value.replace(/[^\w./]/ig,'')">

只能輸入數(shù)字和英文
<input onKeyUp="value=value.replace(/[^\d|chun]/g,'')">

小數(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">

小數(shù)點(diǎn)后只能有最多兩位(數(shù)字,字母,中文都可輸入),可以輸入運(yùn)算符號(hào):
<input onkeyup="this.value=this.value.replace(/^(-)(\d+).(\d\d)./,'12.3')">

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容