Jquery 다음 자동 로그인 사용자 이름 암호 기억하기

2188 단어 jquery
Jquery 다음 자동 로그인 사용자 이름 암호 기억하기
Jquery 사용자 이름 암호를 쿠키에 저장
 
jquery를 가져와야 합니다.js와 jquery.cookie.js
 
 
<html>
<head>
<title>test cookie</title>
<script src="Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>
<script src="Scripts/jquery.cookie.js" type="text/javascript"></script>
<script type="text/javascript">

    $(document).ready(function () {
        if ($.cookie("rmbUser") == "true") {
        $("#ck_rmbUser").attr("checked", true);
        $("#txt_username").val($.cookie("username"));
        $("#txt_password").val($.cookie("password"));
        }
    });

    //       
    function Save() {
        if ($("#ck_rmbUser").attr("checked")) {
            var str_username = $("#txt_username").val();
            var str_password = $("#txt_password").val();
            $.cookie("rmbUser", "true", { expires: 7 }); //     7    cookie
            $.cookie("username", str_username, { expires: 7 });
            $.cookie("password", str_password, { expires: 7 });
        }
        else {
            $.cookie("rmbUser", "false", { expire: -1 });
            $.cookie("username", "", { expires: -1 });
            $.cookie("password", "", { expires: -1 });
        }
    };
</script>
</head>
<body>
    <div>
           :<input type="text" id="txt_username"/><br />
          :<input type="text" id="txt_password"/><br />
        <input type="checkbox" id="ck_rmbUser"/>        <br />
        <input type="submit" id="sub" value="  " onclick="Save()"/>
    </div>
</body>
</html>

좋은 웹페이지 즐겨찾기