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 암호 화 비밀번호 부터 쿠키 의 실현 코드 까지 여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 메 시 지 를 남 겨 주세요.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
jQuery 전후 예이 기사에서는 jquery after() 및 before() 메소드의 예를 볼 것입니다. before() 메서드는 선택한 요소 앞에 지정된 콘텐츠를 삽입합니다. after() 메서드는 선택한 요소 뒤에 지정된 콘텐츠...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.