码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript 学习中

时间:2016-01-08 23:46:35      阅读:395      评论:0      收藏:0      [点我收藏+]

标签:

邮箱的验证:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>email</title>
        <script type="text/javascript">
            window.onload=isEmail;
            function isEmail(){
                var getValue=document.getElementById("zh_e");
                var getBtn=document.getElementById("btn");
                var getReset=document.getElementById("reset");
                var emial=/^([a-zA-Z0-9]+[_|/_|/.]?)*[a-zA-Z0-9]+@([a-zA-Z0-9]+[_|/_|/.]?)*[a-zA-Z0-9]+/;
                getBtn.onclick=function(){
                    if(getValue.value==""||!(emial.test(getValue.value))){
                        alert("input!");
                    }
                    else{
                         alert("you are right!");
                    }
                }
                getReset.onclick=function(){           //
                    getValue.value="";                     //
                    return false;
                }
            }
        </script>
    </head>
    <body>
        <input type="text" maxlength="32" id="zh_e" /><br />
        <input type="button" name="btn" id="btn" value="btn" />
        <input type="button" name="reset" id="reset" value="reset" />
    </body>
</html>

JavaScript 学习中

标签:

原文地址:http://www.cnblogs.com/webph/p/5115173.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!