h 这是正则写了位数的:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title></title>
</head>
<body>
<form action="">
<input type="text" id="username" value="" required pattern="^\d{3}">
<input type="submit" id="submit">
</form>
<script>
var names = document.getElementById("username");
var submit = document.getElementById("submit");
//补充完整!
submit.onclick=function(){
if(names.checkValidity()){
alert('符合');
}else{
alert('不符合');
}
}
</script>
</body>
</html>
没有位数的就是把<input type="text" id="username" value="" required pattern="^\d{3}">换成了<input type="text" id="username" value="" required pattern="^\d{}">