js 正則 數值驗證

2021-09-06 11:21:07 字數 2829 閱讀 1182

1

function

checktextdatafornormal(strvalue)27

89function

checktextdataforinteger(strvalue)

1014

1516

function

isunsignedinteger(strinteger)

1721

22function

checkmoney(strvalue, strunit)

23)?$/");

25return

testmoney.test(strvalue);26}

2728

29function

checktextdataforfloat(strvalue)

3034

3536

function

checktextdatafornumber(strvalue)

3741

4243

function

checktextdataforenglish(strvalue)

4448

4950

function

checktextdataforenglishucase(strvalue)

5155

5657

function

checktextdataforenglishlcase(strvalue)

5862

6364

function

checktextdataforenglishnumber(strvalue)

6569

7071

function

checktextdatafortime(strvalue)

72):(\d)$/;

74return

regtexttime.test(strvalue);75}

7677

78function

checktextdataforphone(strvalue)

7983

8485

function

checktextdataforemail(strvalue)

86)$/;

88return

regtextemail.test(strvalue);89}

9091

92function

checktextdataforurl(strvalue)

9397

9899

function

checktextdataforpost(strvalue)

100$/;

102return

regtextpost.test(strvalue);

103 }

控制flash顯示沒有虛框*******************************

js_資料驗證*******************************

只能輸入中文:οnkeyup="value=value.replace(/[^\u4e00-\u9fa5]/g,'')"

只能輸入數字:「^[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-9]*$」

只能輸入長度為3的字元:「^.$」

只能輸入由26個英文本母組成的字串:「^[a-za-z]+$」

只能輸入由26個大寫英文本母組成的字串:「^[a-z]+$」

只能輸入由26個小寫英文本母組成的字串:「^[a-z]+$」

只能輸入由數字和26個英文本母組成的字串:「^[a-za-z0-9]+$」

只能輸入由數字、26個英文本母或者下劃線組成的字串:「^\w+$」

驗證使用者密碼:「^[a-za-z]\w$」正確格式為:以字母開頭,長度在6-18之間,

正確格式為:「***x-******x」,「***x-******xx」,「***-******x」,

「***-******xx」,「******x」,「******xx」。

驗證身份證號(15位或18位數字):「^\d|\d$」

驗證一年的12個月:「^(0?[1-9]|1[0-2])$」正確格式為:「01」-「09」和「1」「12」

驗證乙個月的31天:「^((0?[1-9])|((1|2)[0-9])|30|31)$」

正確格式為:「01」「09」和「1」「31」。

用正規表示式限制文字框只能輸入數字,小數點,英文本母,漢字等各類**

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

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

3.數字和小數點方法二

4.只能輸入字母和漢字

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

6.只能輸入數字和英文chun

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

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

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

**

float js 正則 驗證 js 正則 數值驗證

1 functionchecktextdatafornormal strvalue 2 7 9 functionchecktextdataforinteger strvalue 10 14 16 functionisunsignedinteger strinteger 17 21 22 functi...

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正則驗證1

複製 如下 function check html 判斷輸入是否是乙個由 0 9 a z a z 組成的字串 function isalphanumber str 判斷輸入是否是乙個數字 數字包含小數 function isnumber str 判斷輸入是否是乙個整數 function isint ...