<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<script>
function testReg(){
var regExp = /^\\d{2,6}$/g;
var input = prompt("请输入2-6位的数字:");
if(regExp.test(input)){
alert("格式正确");
}else{
alert("格式错误");
}
}
</script>
<button onclick="testReg()">测试正则表达式</button>
</body>
</html>
JS-regExp-正则表达式匹配2-6的数字
Posted IndustriousHe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS-regExp-正则表达式匹配2-6的数字相关的知识,希望对你有一定的参考价值。
以上是关于JS-regExp-正则表达式匹配2-6的数字的主要内容,如果未能解决你的问题,请参考以下文章