身份验证正则表达式

前端之家收集整理的这篇文章主要介绍了身份验证正则表达式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

var reg = /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/;
if(reg.test(card) === false)
{
alert("身份证输入不合法");
return false;
}
<script>function $(e){return document.getElementById(e);}function go(){var reg=/^[1-9]{1}[0-9]{14}$|^[1-9]{1}[0-9]

{16}([0-9]|[xX])$/;if(reg.test($("check").value)){alert("ok");}else{alert("no");}}</script></head><body><input

id="check" type="text" onchange="go()" /></body>

原文链接:https://www.f2er.com/regex/359204.html

猜你在找的正则表达式相关文章