手机号码的校验
<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>正则表达式验证</title>
    <script  type="text/javascript">
        function check(){
            var str = ElementById("str");
            if( str.value == "" ){
                alert("请输入要验证的字符串");
                str.focus();
                return;
            }
            //这里编写手机正则表达式  13,15,18开头的11为数字组成       
            //console.log(/^(13|15|18)\d{9}$/.test(str.value)?"YES,通过!":"NO,不通过!");
       
        }
html手机网站
    </script>
</head>
<body>
    <h3>表单验证</h3>
    手机:<input type="text" value="" id="str"/><br/>
    <input type="button" value="校验" onclick="check()" />
</body>
</html>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。