-
[jQuery]쿠키(cookie) 함수프로그램/jQuery/Javascript 2013. 9. 14. 10:32jQuery 쿠키 입니다.
javascript 쿠키 함수도 있지만 먼저 jQuery로 만든 쿠키 함수를 공유 합니다.
사용방법은 일반 쿠키를 사용 하는 방법이랑 같습니다.
아래 소스를 참고 해주세요.
// jQuery Cookie plugin $.cookie = function(name, value, options) { if (typeof value != 'undefined') { options = options || {}; if (value === null) { value = ''; options.expires = -1; } var expires = ''; if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) { var date; if (typeof options.expires == 'number') { date = new Date(); date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000)); } else { date = options.expires; } expires = '; expires=' + date.toUTCString(); } var path = options.path ? '; path=' + (options.path) : ''; var domain = options.domain ? '; domain=' + (options.domain) : ''; var secure = options.secure ? '; secure' : ''; document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join(''); } else { var cookieValue = null; if(document.cookie && document.cookie != '') { var cookies = document.cookie.split(';'); for (var i = 0; i < cookies.length; i++) { var cookie = $.trim(cookies[i]); if (cookie.substring(0, name.length + 1) == (name + '=')) { cookieValue = decodeURIComponent(cookie.substring(name.length + 1)); break; } } } return cookieValue; } }; //함수 사용 $.cookie("view","none",{path: '/',expires:1});
'프로그램 > jQuery/Javascript' 카테고리의 다른 글
[jQuery] tabs 사용방법 및 예제 (0) 2013.09.15 [jQuery]animate 예제 및 사용법 입니다. (0) 2013.09.14 [javascript/jQuery]백스페이스 뒤로가기 방지하기 (0) 2013.09.13 [jQuery/javascript] escape,encodeURI,encodeURIComponent 인코딩 종류와 사용예 (0) 2013.09.12 [jQuery] 셀렉터(seletor) 비슷한 값으로 찾는 방법 (0) 2013.09.11