jQuery 암호 화 쿠키 구현 코드

잔말 말고 바로 코드 를 붙 여 드 리 겠 습 니 다.구체 적 인 코드 는 다음 과 같 습 니 다.

 <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
  <table>
    <tr>
      <th>  :</th>
      <td><input type="text" id="username" /></td>
    </tr>
    <tr>
      <th>  :</th>
      <td><input type="text" id="password" /></td>
    </tr>
    <tr>
      <td><button onclick="setCookie();">  </button></td>
      <td><button onclick="getCookie();">  </button></td>
    </tr>
  </table>
</body>
<script type="text/javascript" src="http://lib.sinaapp.com/js/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript" src="http://lib.sinaapp.com/js/jquery.cookie/jquery.cookie.js"></script>
<script type="text/javascript" src="https://raw.githubusercontent.com/yckart/jquery.base64.js/master/jquery.base64.js"></script>
<script type="text/javascript">
  function setCookie() { //  cookie 
    var loginCode = $("#username").val(); //        
    var pwd = $("#password").val(); //         
    $.cookie("username", loginCode);//  jquery.cookie.js      cookie      
    $.cookie("pwd", $.base64.encode(pwd));//  jquery.cookie.js      cookie      ,   base64(jquery.base64.js)     
  }
  function getCookie() { //  cookie 
    var loginCode = $.cookie("username"); //  cookie      
    var pwd = $.cookie("pwd"); //  cookie       
    if (loginCode) {//                     
      $("#username").val(loginCode);
    }
    if (pwd) {//                  
      $("#password").val($.base64.decode(pwd));
    }
  }
</script>
</html>
위 에서 말 한 것 은 여러분 에 게 소개 한 jQuery 암호 화 비밀번호 부터 쿠키 의 실현 코드 까지 여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 메 시 지 를 남 겨 주세요.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기