JS正規表示式

2021-10-03 06:25:14 字數 3675 閱讀 2899

1.文字框只能輸入數字**(小數點也不能輸入)

"this.value=this.value.replace(/\d/g,'')" onafterpaste=

"this.value=this.value.replace(/\d/g,'')"

>

2.只能輸入數字,能輸小數點.

"if(isnan(value))execcommand('undo')" onafterpaste=

"if(isnan(value))execcommand('undo')"

>

"if(/\d/.test(this.value))"

>

3.數字和小數點方法二

"" 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"

>

4.只能輸入字母和漢字

"value=value.replace(/[\d]/g,'') "onbeforepaste=

"clipboarddata.setdata('text',clipboarddata.getdata('text').replace(/[\d]/g,''))" maxlength=

10 name=

"numbers"

>

5.只能輸入英文本母和數字,不能輸入中文

"value=value.replace(/[^\w\.\/]/ig,'')"

>

6.只能輸入數字和英文

"value=value.replace(/[^\d|chun]/g,'')"

>

7.小數點後只能有最多兩位(數字,中文都可輸入),不能輸入字母和運算符號:

"if((event.keycode<48 || event.keycode>57) && event.keycode!=46 || /\.\d\d$/.test(value))event.returnvalue=false"

>

8.小數點後只能有最多兩位(數字,字母,中文都可輸入),可以輸入運算符號:

"this.value=this.value.replace(/^(\-)*(\d+)\.(\d\d).*$/,'$1$2.$3')"

>

9.只能輸入漢字:

"value=value.replace(/[^\u4e00-\u9fa5]/g,'')" onbeforepaste=

"clipboarddata.setdata('text',clipboarddata.getdata('text').replace(/[^\u4e00-\u9fa5]/g,''))"

>

10.只能輸入數字:

"value=value.replace(/[^\d]/g,'') "onbeforepaste=

"clipboarddata.setdata('text',clipboarddata.getdata('text').replace(/[^\d]/g,''))"

>

11.只能輸入英文和數字:

"value=value.replace(/[\w]/g,'') "onbeforepaste=

"clipboarddata.setdata('text',clipboarddata.getdata('text').replace(/[^\d]/g,''))"

>

12.控制輸入框只能輸入文字或數字,也可以不允許輸入特殊字元這裡不允許輸入如下字元:(像 !@#$%^&*等)

2 cols=

20 name=comments onkeypress=

"if ((event.keycode > 32 && event.keycode < 48) || (event.keycode > 57 && event.keycode < 65) || (event.keycode > 90 && event.keycode < 97)) event.returnvalue = false;"

>

13.只禁止空格輸入

onkeyup=

"value=value.replace(/\s/g,'')"

14.只能輸入中文和英文:

onkeyup=

"value=value.replace(/[^\a-za-z\u4e00-\u9fa5]/g,'')" onbeforepaste=

"clipboarddata.setdata('text',clipboarddata.getdata('text').replace(/[^\a-za-z\u4e00-\u9fa5]/g,''))"

"" 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"

>

js數字正規表示式,js小數正規表示式

js數字正規表示式,js小數正規表示式 是否為數字 僅正數 包括正整數 正小數 0 param value returns function isnumber value 是否為所有數字 正數 負數 包括整數 小數 0 param value returns function isnumberall...

JS 正規表示式

驗證數字的正規表示式集 驗證數字 0 9 驗證n位的數字 d 驗證至少n位數字 d 驗證m n位的數字 d 驗證零和非零開頭的數字 0 1 9 0 9 驗證有兩位小數的正實數 0 9 0 9 驗證有1 3位小數的正實數 0 9 0 9 驗證非零的正整數 1 9 0 9 驗證非零的負整數 1 9 0 ...

js正規表示式

用正規表示式模式在字串中執行查詢,並返回包含該查詢結果的乙個陣列。rgexp.exec str 引數rgexp 必選項。包含正規表示式模式和可用標誌的正規表示式物件。str 必選項。要在其中執行查詢的string物件或字串文字。說明如果exec方法沒有找到匹配,則它返回null。如果它找到匹配,則e...