jQuery를 이용한 ID/PW cookie 저장 처리
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
var cookieIdKeyStr = "USER_ID";
var cookiePwKeyStr = "USER_PW";
$(document).ready(function(){
<%-- 쿠키값을 읽어와 ID/PW 체크 --%>
if( $.cookie(cookieIdKeyStr)!="" && $.cookie(cookieIdKeyStr)!=null ) {
$("#cb_idSave").attr("checked", "checked");
$("#textMemberId").val($.cookie(cookieIdKeyStr));
}
if( $.cookie(cookiePwKeyStr)!="" && $.cookie(cookiePwKeyStr)!=null ) {
$("#cb_pwSave").attr("checked", "checked");
$("#textMemberPw").val($.cookie(cookiePwKeyStr));
}
});
function check() {
checkSaveIdPw();
}
<%-- ID/PW 저장 체크 --%>
function checkSaveIdPw() {
var checkStatus = $("#cb_idSave").is(":checked");
if( checkStatus ) {
$.cookie(cookieIdKeyStr, $("#mnMemberCode").val(), { expires: 30 });
} else {
$.cookie(cookieIdKeyStr, null);
}
checkStatus = $("#cb_pwSave").is(":checked");
if( checkStatus ) {
$.cookie(cookiePwKeyStr, $("#mnMemberPwd").val(), { expires: 30 });
} else {
$.cookie(cookiePwKeyStr, null);
}
}
|
jQuery cookie 사용법
$.cookie('the_cookie'); //cookie취득
$.cookie('the_cookie', 'the_value'); //cookie를 셋팅
$.cookie('the_cookie', 'the_value', { expires: 7 }); //쿠키의 유효기간을 7일간으로 지정
$.cookie('the_cookie', '', { expires: -1 }); //cookie 삭제
$.cookie('the_cookie', null); //cookie 삭제
https://github.com/carhartl/jquery-cookie // jQuery 쿠키 js 다운로드 및 참조
참고 : http://blog.naver.com/PostView.nhn?blogId=lazyker&logNo=110132802552
제목 | 날짜 | |
---|---|---|
코딩 배울 수 있는 사이트 모음(HTML/CSS/JS/IMG/PHP) | 2018/01/03 | |
jQuery를 배울수 있는 동네들입니다. | 2013/08/09 | |
관련 링크 [1] | 2010/05/23 | |
175 | [PHP] 사이트 테마 기능 구현하기 [1] | 2007/04/18 |
174 | [Script] DIV 레이어 토글 [1] | 2007/04/21 |
173 | [Script] PNG 알파 필터 사용하기 [1] | 2007/04/21 |
172 | [Script] 최소/최대화 버튼 없는 군더더기 없는 새창 띄우기 | 2007/04/22 |
171 | [Script] 스위칭 탭 | 2007/08/19 |
170 | [HTML5] pre 태그랑 xmp 태그의 차이점 [1] | 2007/08/20 |
169 | [미분류] 태터에 제로보드 넣기 & Next, Prev 버튼 감추기 (by SkyRejoice) | 2007/08/27 |
168 | [Script] 레이어를 이용한 서브 메뉴 | 2007/09/10 |
167 | [Script] onload="allblur()" | 2007/11/10 |
166 | [Script] 입력폼에 배경 넣기 | 2008/12/22 |
165 | Table to DIV [5] | 2008/12/25 |
164 | 구글 인덱스 코드 | 2008/12/25 |
163 | CSS 강좌 2일차 : display : inline(혹은 block, none) | 2008/12/27 |
162 | [DIV] 이미지 없이 CSS로 둥근 모서리 구현하기 [1] | 2008/12/31 |
161 | Rounded corners without images [1] | 2008/12/31 |
160 | 이미지 없이 CSS로 둥근 모서리 구현하기(1) | 2008/12/31 |
159 | Rounded Corners | 2008/12/31 |
158 | 크로스브라우징 팁 정리 [2] | 2009/01/01 |
157 | DIV와 Table for Layout 에 대한 코딩 이야기 [2] | 2009/01/03 |
156 | 리다이렉트 방식에 대해서..... | 2009/01/04 |