正则表达式

首页 > 前端开发 > javascript 更新日期:2022-02-25 11:28:39

验证手机号格式

var phone = "137啊啊啊456";
var reg=/^1[3456789]\d{9}$/;
if(!reg.test(phone)){
    console.log("请输入正确的手机号");
}

将时间的-替换为任意字符

var time = $(".time").val();
time = time.replace(/-/g, "a");

input限制输入内容

只允许输入正整数:

<input type='text'onkeyup="this.value=this.value.replace(/^(0+)|[^\d]+/g,'')" />

只允许输入英文:

<input type="text"onkeyup="this.value=this.value.replace(/[^a-zA-Z]/g,'')" />

只允许允许输入数字和字母:

<input onkeyup="value=value.replace(/[\W]/g,'')" />

允许输入大小写字母、数字、下划线:

<input type="text"onkeyup="this.value=this.value.replace(/[^\w_]/g,'');" />

允许输入小写字母、数字、下划线:

<input type="text"onkeyup="this.value=this.value.replace(/[^a-z0-9_]/g,'');" />

允许输入数字和小数点:

<input type="text"onkeyup="this.value=this.value.replace(/[^\d.]/g,'')" />

允许输入中文、数字、英文:

<input type="text" onkeyup="value=value.replace(/[^\w\u4E00-\u9FA5]/g,'')" />


标题导航