首页 > 网站 > WEB开发 > 正文

正则表达式校验

2024-04-27 15:07:37
字体:
来源:转载
供稿:网友

正则表达式校验

一、校验手机号

 //正则检测手机号    PRivate _checkPhone(phone: string): boolean {        if (!(/^1(3|4|5|7|8)/d{9}$/.test(phone))) {            return false;        }        return true;    }

二、input只输入数字,小数点

//js判断string= string.replace(/[^/d/.]/g, '');//html判断,有时候要加双反斜杠“//”<input type="text" class="input-div budget" must="false" placeholder="输入预算金额" maxlength=10  onkeyup="this.value=this.value.replace(/[^//d//.]/g,'')"/>

三、只输入数字、字母和汉字

//只输入数字、字母和汉字value = value.replace(/[^(a-zA-Z0-9/u4e00-/u9fa5)]/, '');


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表