HTML中input輸入框禁止復制粘貼剪切自動完成


禁止復制:
oncopy="return false"
禁止粘貼:
onpaste="return false"
禁止剪切:
oncut="return false"
關閉自動完成功能(緩存):
autocomplete="off"
自動獲得焦點:
autofocus="autofocus"
禁用自動更正:
autocorrect="off"
來關閉鍵盤默認首字母大寫(移動端):
autocapitalize="off"
不對元素的文本進行拼寫檢查:
spellcheck="false"
禁止右鍵彈出:
oncontextmenu="return false"

 

輸入大小寫字母、數字、下划線:
<input type = "text" onkeyup="this.value=this.value.replace(/[^\w_]/g,'');"> 
輸入數字和點
<input type="text" onkeyup="value=value.replace(/[^\d.]/g,'')">
輸入小寫字母、數字、下划線:
<input type = "text" onkeyup="this.value=this.value.replace(/[^a-z0-9_]/g,'');"> 
輸入中文: 
<input type = "text" onkeyup="this.value=this.value.replace(/[^\u4e00-\u9fa5]/g,'')"> 
輸入數字: 
<input type = "text" onkeyup="this.value=this.value.replace(/\D/g,'')"> 
輸入英文: 
<input type = "text" onkeyup="this.value=this.value.replace(/[^a-zA-Z]/g,'')"> 
輸入中文、數字、英文: 
<input onkeyup = "value=value.replace(/[^\w\u4E00-\u9FA5]/g, '')" >
輸入數字和字母:
<input onKeyUp = "value=value.replace(/[\W]/g,'')" >
除了英文的標點符號以外,其他的都可以中文,英文字母,數字,中文標點
<input type="text" onkeyup="this.value=this.value.replace(/^[^!@#$%^&*()-=+]/g,'')">
只能輸入數字代碼(小數點也不能輸入)
<input onkeyup = "this.value=this.value.replace(/\D/g,'')">
只能輸入數字,能輸小數點.  方法一:
<input onkeyup = "if(isNaN(value))execCommand('undo')">
<input name = txt1 onchange="if(/\D/.test(this.value)){alert('只能輸入數字');this.value='';}">

 

數字和小數點方. 法二:
<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">
只能輸入英文字母和數字, 不能輸入中文
<input onkeyup="value=value.replace(/[^\w\.\/]/ig,'')">
只能輸入數字和英文
<input onKeyUp = "value=value.replace(/[^\d|chun]/g,'')" >
小數點后只能有最多兩位(數字, 中文都可輸入), 不能輸入字母和運算符號:
<input onKeyPress = "if((event.keyCode<48 || event.keyCode>57) && event.keyCode!=46 || /\.\d\d$/.test(value))event.returnValue=false" >
小數點后只能有最多兩位(數字, 字母, 中文都可輸入), 可以輸入運算符號:
<input onkeyup = "this.value=this.value.replace(/^(\-)*(\d+)\.(\d\d).*$/,'$1$2.$3')" >

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM