欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

php用戶注冊(cè)頁面利用js進(jìn)行表單驗(yàn)證具體實(shí)例

 更新時(shí)間:2013年10月17日 15:28:35   作者:  
這篇文章介紹了php用戶注冊(cè)頁面利用js進(jìn)行表單驗(yàn)證具體實(shí)例,有需要的朋友可以參考一下
復(fù)制代碼 代碼如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
        <title>用戶注冊(cè) - 腳本之家</title>
        <link href="../css/login.css" rel="stylesheet" type="text/css" />
        <link href="../css/page_bottom.css" rel="stylesheet" type="text/css" />
        <script type="text/javascript" src="../js/jquery-1.7.1.js"></script>
        <script type="text/javascript">
            var flag = {
                "email":false,
                "nickname":false,
                "password":false,
                "verify":false
            };

            $(function(){
                $("#txtEmail").blur(function () {
                                        var email=$(this).val();
                                        //alert(email);
                                        if(email==""){
                                            $("#email\\.info").html("Email地址不能為空");
                                            return;
                                        }
                                        var pattern=/\b(^['_A-Za-z0-9-]+(\.['_A-Za-z0-9-]+)*@([A-Za-z0-9-])+(\.[A-Za-z0-9-]+)*((\.[A-Za-z0-9]{2,})|(\.[A-Za-z0-9]{2,}\.[A-Za-z0-9]{2,}))$)\b/;
                                        if(!pattern.test(email)){
                                            $("#email\\.info").html("Email格式不正確");
                                            return;
                                        }
                                        $.get("check_email.php?email="+email,null,
                                            function(data){
                                                $("#email\\.info").html(data);
                                                if (data=="可以注冊(cè)") {
                                                    flag.email=true;
                                                }
                                            }
                                        );
                                    });
                $("#txtNickName").blur(function () {
                                            var nickname=$(this).val();
                                            if(nickname==""){
                                                $("#name\\.info").html("昵稱不能為空");
                                                return;
                                            }
                                            var pattern = /\b(^['A-Za-z0-9]{4,20}$)\b/;
                                            if (!pattern.test(nickname)) {
                                                $("#name\\.info").html("昵稱格式不正確");
                                                return;
                                            }else{
                                                $("#name\\.info").html("昵稱格式正確");
                                                flag.nickname=true;
                                                return;
                                            }
                                       });
                $("#txtPassword").blur(function () {
                                            var password=$(this).val();
                                            if (password=="") {
                                                $("#password\\.info").html("密碼不能為空");
                                                return;
                                            }
                                            var pattern = /\b(^['A-Za-z0-9]{4,20}$)\b/;
                                            if (!pattern.test(password)) {
                                                $("#password\\.info").html("密碼格式不正確");
                                                return;   
                                            }else{
                                                $("#password\\.info").html("密碼格式正確");
                                                //flag.password=true;
                                                return;
                                            }
                                       });
                $("#txtRepeatPass").blur(function () {
                                            var password1=$(this).val();
                                            if (password1=="") {
                                                $("#password1\\.info").html("密碼不能為空");
                                                return;
                                            }
                                            var pattern = /\b(^['A-Za-z0-9]{4,20}$)\b/;
                                            if (!pattern.test(password1)) {
                                                $("#password1\\.info").html("密碼格式不正確");
                                                return;   
                                            }else if(password1!=$("#txtPassword").val()){
                                                $("#password1\\.info").html("兩次輸入的密碼不一致");
                                                return;
                                            }else{
                                                $("#password1\\.info").html("重復(fù)密碼正確");
                                                flag.password=true;
                                                return;
                                            }                                            
                                        });
                $("#txtVerifyCode").blur(function () {
                                            var verify=$(this).val();
                                            if(verify==""){
                                                $("#number\\.info").html("驗(yàn)證碼不能為空");
                                                return;
                                            }
                                            $.post("./verify/check.php",{verify:verify},
                                                function(data){
                                                    $("#number\\.info").html(data);
                                                    if (data=="驗(yàn)證成功") {
                                                        flag.verify=true;
                                                    }
                                                }
                                            );
                                         })
                $("#f").submit(function(){
                                    var ok = flag.email&&flag.password&&flag.verify&&flag.nickname;
                                    if(ok==false){
                                        alert("表單項(xiàng)正在檢測(cè)或存在錯(cuò)誤");
                                        history.back();
                                        return false;
                                    }
                                    return true;
                                }); 
            })
        </script>
    </head>
    <body>
        <?php include("../common/head.php"); ?>
        <div class="login_step">
            注冊(cè)步驟:<span class="red_bold">1.填寫信息</span> > 2.驗(yàn)證郵箱 > 3.注冊(cè)成功
        </div>
        <div class="fill_message">
            <form name="ctl00" method="post" action="save_reg.php" id="f">
                <h2>以下均為必填項(xiàng)</h2>
                <table class="tab_login" >
                    <tr>
                        <td valign="top" class="w1">請(qǐng)?zhí)顚懩腅mail地址:</td>
                        <td>
                            <input name="email" type="text" id="txtEmail" class="text_input"/>
                            <div class="text_left" id="emailValidMsg">
                                <p>請(qǐng)?zhí)顚懹行У腅mail地址。</p>
                                <span id="email.info" style="color:red"></span>
                            </div>
                        </td>
                    </tr>
                    <tr>
                        <td valign="top" class="w1">設(shè)置您在腳本之家的昵稱:</td>
                        <td>
                            <input name="nickname" type="text" id="txtNickName" class="text_input" />
                            <div class="text_left" id="nickNameValidMsg">
                                <p>由小寫英文字母、中文、數(shù)字組成,長(zhǎng)度4-20個(gè)字符,一個(gè)漢字為兩個(gè)字符。</p>
                                <span id="name.info" style="color:red"></span>
                            </div>
                        </td>
                    </tr>
                    <tr>
                        <td valign="top" class="w1">設(shè)置密碼:</td>
                        <td>
                            <input name="password" type="password" id="txtPassword" class="text_input" />
                            <div class="text_left" id="passwordValidMsg">
                                <p>您的密碼可以由大小寫英文字母、數(shù)字組成,長(zhǎng)度6-20位。</p>
                                <span id="password.info" style="color:red"></span>
                            </div>
                        </td>
                    </tr>
                    <tr>
                        <td valign="top" class="w1">再次輸入您設(shè)置的密碼:</td>
                        <td>
                            <input name="password1" type="password" id="txtRepeatPass" class="text_input"/>
                            <div class="text_left" id="repeatPassValidMsg">
                            <span id="password1.info" style="color:red"></span>
                            </div>
                        </td>
                    </tr>
                    <tr>
                        <td valign="top" class="w1">驗(yàn)證碼:</td>
                        <td>
                            <img class="yzm_img" id='imgVcode' src='./verify/verify.php' style="cursor:pointer" border='0' onclick="document.getElementById('imgVcode').src='./verify/verify.php?t='+Math.random()"/>
                            <input name="number" type="text" id="txtVerifyCode" class="yzm_input"/>
                            <div class="text_left t1">
                                <p class="t1">
                                    <span id="vcodeValidMsg">請(qǐng)輸入圖片中的四個(gè)字母。</span>                                    
                                    <a href="#" style="cursor:pointer" onclick="document.getElementById('imgVcode').src='./verify/verify.php?t='+Math.random()">看不清楚?換個(gè)圖片</a>
                                    <br />
                                    <span id="number.info" style="color:red"></span>
                                </p>
                            </div>
                        </td>
                    </tr>
                </table>

                <div class="login_in">
                    <input id="btnClientRegister" class="button_1" name="submit" type="submit" value="注 冊(cè)"/>
                </div>
            </form>
        </div>
        <?php include("../common/foot.php"); ?>
    </body>
</html>

相關(guān)文章

  • 一個(gè)模仿oso的php論壇程序源碼(之三)

    一個(gè)模仿oso的php論壇程序源碼(之三)

    一個(gè)模仿oso的php論壇程序源碼(之三)...
    2007-03-03
  • Laravel項(xiàng)目中timeAgo字段語言轉(zhuǎn)換的改善方法示例

    Laravel項(xiàng)目中timeAgo字段語言轉(zhuǎn)換的改善方法示例

    這篇文章主要給大家介紹了關(guān)于Laravel項(xiàng)目中timeAgo字段語言轉(zhuǎn)換的改善方法,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家學(xué)習(xí)或者使用Laravel具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-09-09
  • 最新評(píng)論