js 限制文字框只能輸入數字,不為空的正則表示式 阿新 • • 發佈:2019-02-12 許多時候我們在製作表單時需要限制文字框輸入內容的型別,下面我們用正則表示式限制文字框只能輸入數字、小數點、英文字母、漢字等各類程式碼。 <input onblur="if(this.value.replace(/^ +|+$/g,'')=='')alert('不能為空!')"> 只能輸入中文 <input type="text"onkeyup="value=value.replace(/[^\u4E00-\u9FA5]/g,'')"> 只能輸入英文 <input type="text"onkeyup="value=value.replace(/[^\a-\z\A-\Z]/g,'')"> <input type="text"onkeyup="value=value.replace(/[^a-zA-Z]/g,'')"> 1.文字框只能輸入數字程式碼(小數點也不能輸入) <input onkeyup="this.value=this.value.replace(/\D/g,'')" onafterpaste="this.value=this.value.replace(/\D/g,'')"> 2.只能輸入數字,不能輸小數點. <input onkeyup="if(isNaN(value))execCommand('undo')" onafterpaste="if(isNaN(value))execCommand('undo')"> <input name=txt1 onchange="if(/\D/.test(this.value)){alert('只能輸入數字');this.value='';}"> 3.數字和小數點方法二 <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}"> 4.只能輸入字母和漢字 <input onkeyup="value=value.replace(/[\d]/g,'') "onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[\d]/g,''))" maxlength=10 name="Numbers"> 5.只能輸入英文字母和數字,不能輸入中文 <input onkeyup="value=value.replace(/[^\w\.\/]/ig,'')"> 6.只能輸入數字和英文 <input onKeyUp="value=value.replace(/[^\d|chun]/g,'')"> 7.小數點後只能有最多兩位(數字,中文都可輸入),不能輸入字母和運算子號: <input onKeyPress="if((event.keyCode<48 || event.keyCode>57) && event.keyCode!=46 || /\.\d\d$/.test(value))event.returnValue=false"> 8.小數點後只能有最多兩位(數字,字母,中文都可輸入),可以輸入運算子號: <input onkeyup="this.value=this.value.replace(/^(\-)*(\d+)\.(\d\d).*$/,'$1$2.$3')">