常用js整理

2021-08-26 11:00:26 字數 1810 閱讀 9238

intege:"^-?[1-9]\\d*$", //整數

intege1:"^[1-9]\\d*$", //正整數

intege2:"^-[1-9]\\d*$", //負整數

num:"^([+-]?)\\d*\\.?\\d+$", //數字

num1:"^(([0-9]+.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*.[0-9]+)|([0-9]*[1-9][0-9]*))$",//正數(包括浮點和整數)

num2:"^-[1-9]\\d*|0$", //負數(負整數 + 0)

decmal:"^([+-]?)\\d*\\.\\d+$", //浮點數

decmal1:"^[1-9]\\d*.\\d*|0.\\d*[1-9]\\d*$",   //正浮點數

decmal2:"^-([1-9]\\d*.\\d*|0.\\d*[1-9]\\d*)$",  //負浮點數

decmal3:"^-?([1-9]\\d*.\\d*|0.\\d*[1-9]\\d*|0?.0+|0)$",  //浮點數

decmal4:"^[1-9]\\d*.\\d*|0.\\d*[1-9]\\d*|0?.0+|0$",   //非負浮點數(正浮點數 + 0)

decmal5:"^(-([1-9]\\d*.\\d*|0.\\d*[1-9]\\d*))|0?.0+|0$",  //非正浮點數(負浮點數 + 0)

email:"^\\w+((-\\w+)|(\\.\\w+))*\\@[a-za-z0-9]+((\\.|-)[a-za-z0-9]+)*\\.[a-za-z0-9]+$", //郵件

color:"^[a-fa-f0-9]$", //顏色

chinese:"^[\\u4e00-\\u9fa5\\uf900-\\ufa2d]+$", //僅中文

ascii:"^[\\x00-\\xff]+$", //僅acsii字元

zipcode:"^\\d$", //郵編

mobile:"^(13|15|18)[0-9]$", //手機

ip4:"^(25[0-5]|2[0-4]\\d|[0-1]\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|[0-1]\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|[0-1]\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|[0-1]\\d|[1-9]?\\d)$", //ip位址

notempty:"^\\s+$", //非空

rar:"(.*)\\.(rar|zip|7zip|tgz)$", //壓縮檔案

date:"^\\d(\\-|\\/|\.)\\d\\1\\d$", //日期

time:"^([0-1]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$", //時間

tel:"^(([0\\+]\\d-)?(0\\d)-)?(\\d)(-(\\d))?$", //**號碼的函式(包括驗證國內區號,國際區號,分機號)

username:"^\\w+$", //用來使用者註冊。匹配由數字、26個英文本母或者下劃線組成的字串

letter:"^[a-za-z]+$", //字母

letter_u:"^[a-z]+$", //大寫字母

letter_l:"^[a-z]+$", //小寫字母

idcard:"^[1-9]([0-9]|[0-9])$" //身份證

常用js整理

intege 1 9 d 整數 intege1 1 9 d 正整數 intege2 1 9 d 負整數 num d d 數字 num1 0 9 0 9 1 9 0 9 0 9 1 9 0 9 0 9 0 9 1 9 0 9 正數 包括浮點和整數 num2 1 9 d 0 負數 負整數 0 decma...

常用js整理

intege 1 9 d 整數 intege1 1 9 d 正整數 intege2 1 9 d 負整數 num d d 數字 num1 0 9 0 9 1 9 0 9 0 9 1 9 0 9 0 9 0 9 1 9 0 9 正數 包括浮點和整數 num2 1 9 d 0 負數 負整數 0 decma...

js常用函式整理

型別轉換 parseint parsefloat tostring 型別判斷 typeof eg if typeof var undefined isnan 字元處理函式 tolowercase touppercase substring 從 截到哪 substr 從 開始 截多少個字元 index...