Redis的安装以及在项目中使用Redis的一些总结和体(6)

});
        $("#username").keyup(function () {
            $("#userNameMsg").text("");
        });
        $("#email").keyup(function () {
            $("#userEmailMsg").text("");
        });
        //检查用户名是否可用。
        $("#username").blur(function () {
            var username = $("#username").val();
            if (username == "") {
                $("#userNameMsg").text("用户名不能为空!");
                return;
            }
            $.ajax({
                url: "UserController.ashx", type: "post", dataType: "json",
                data: { action: "checkUserName", username: username },
                success: function (data) {
                    if (data.status == "ok") {
                        $("#userNameMsg").text("此用户名可用");
                    }
                    else {
                        $("#userNameMsg").text("此用户名不可用,请换用其他用户名");
                    }
                },
                error: function () {
                    $("#userNameMsg").text("检查用户名是否可用失败");
                }
            });
        });
    });
</script>
<style type="text/css">
    #table td
    {
        width: 70px;
        height: 12px;
        background-color: lightgray;
        border: 1px solid #D0D0D0;
        color: #BBBBBB;
        line-height: 9px;
        color: white;
        font-size: 12px;
        font-family: 微软雅黑;
    }
</style>
<!--#include file="/html/headend.html"-->
<!--#include file="/html/navbar.html"-->
<main role="main">
    <table>
        <tr><td><label for="username">用户名:</label></td><td><input type="text" /><span></span></td></tr>
        <tr>
            <td><label for="password">输入密码:</label></td>
            <td>
                <input type="password" /><span></span>
                <table cellpadding="0" cellspacing="1">
                    <tr>
                        <td>弱</td>
                        <td>中</td>
                        <td>强</td>
                    </tr>
                </table>
            </td>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/e7098e21afb944b607e5c5230c350d78.html