첨부파일 https://imweb.eond.com/coding/361458

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

 

코멘트 0
접기/펴기 | 댓글 새로고침
 
 
Total 235 articles in 4 / 12 pages
번호 제목 제목 날짜날짜
공지 코딩 배울 수 있는 사이트 모음(HTML/CSS/JS/IMG/PHP) 2018/01/03
공지 jQuery를 배울수 있는 동네들입니다. 2013/08/09
공지 관련 링크 [1] 2010/05/23
175 [크로스브라우징] Azure Remote App 2015/08/31
현재글 [Script] jQuery Cookie(쿠키) 처리 [출처] jQuery Cookie(쿠키) 처리|작성자 주용준 2015/08/27
173 [PHP] 쿠키를 굽자 2013/02/22
172 [Script] 쿠키 레이어 열기 닫기 PHP, Only Cookie - Hide/Show 2013/09/08
171 [반응형 웹] 반응형 템플릿 (naradesign) 2015/08/26
170 [반응형 웹] 반응형웹(MediaQuery) 템플릿 파일 2015/08/26
169 [위지윅에디터] ckeditor 공식사이트 2015/08/25
168 [위지윅에디터] 기타 위지윅 에디터 2015/08/25
167 [위지윅에디터] 오픈소스 HTML 기반의 위지윅 에디터 2015/08/25
166 [반응형 웹] 모바일 실제 해상도와 device-width 2015/08/24
165 [반응형 웹] [다음 TROY] 기기별 모바일 해상도 테스트 할 수 있는 사이트 2015/08/22
164 [반응형 웹] responsive-animated-block-menu 2015/08/15
163 [프레임워크] http://view.jquerymobile.com/master/demos/ 2015/08/10
162 [프레임워크] http://pages.revox.io/doc/jquery/form_wizard.php 2015/08/10
161 [프레임워크] jquery-steps.com 2015/08/10
160 [프레임워크] http://getuikit.com 2015/08/09
159 [jQuery] jQuery Image Slider and Gallery 2015/05/27
158 [Script] Top으로 스크롤 되면서 돌아가기... (by sisims) 파일 2014/09/29
157 [Script] 슬라이드 이미지 2014/06/16
156 [Script] 간단한 javascript 페이징 처리 - 미니페이지 2014/06/16

해시태그 디렉터리

오늘의 핫게시물