<strong>간단한 사용법: </strong> <br><div class="codetitle"> <span><a style="CURSOR: pointer" data="95997" class="copybut" id="copybut95997" onclick="doCopy('code95997')"><u>코드 복사 </u></a></span> 코드는 다음과 같습니다. </div> <div class="codebody" id="code95997"> <br> <br> <br><title>JQuery-쿠키 플러그인<br><script type="text/javascript" src="jquery-1.4.js"><script type="text/javascript" src="jquery.cookie.js"></script> <BR></head> ; <BR><a href="#">쿠키1 설정</a><br> <BR><a href="#">쿠키2 설정</a><br> <a href="#">쿠키 가져오기</a><br> <BR><a href="#">쿠키 삭제</a><br> <BR></body> ; <BR></html> <BR><script type="text/javascript"> <BR>$(function(){ <BR>var COOKIE_NAME = 'test_cookie'; <BR>//쿠키 설정 , 통과 시간 간격<BR>$('a').eq(0).click(function() { <BR>$.cookie(COOKIE_NAME, 'test', { 경로: '/', 만료: 1 }) ; <BR>return false; <BR>}); <BR>// 쿠키 만료 시간 설정 <BR>$('a').eq(1).click(function() { <BR>var date = new Date (); <BR>date.setTime(date.getTime() (1 * 24 * 60 * 60 * 1000)) <BR>$.cookie(COOKIE_NAME, 'test', { 경로: '/', 만료: 날짜 }); <BR>return false; <BR>// 쿠키 가져오기 <BR>$('a').eq(2).click(function() { <BR>alert ($ .cookie(COOKIE_NAME)); <BR>return false <BR>}) <BR>// 쿠키 삭제 <BR>$('a').eq(3).click(function() { <BR> $.cookie(COOKIE_NAME, null, { 경로: '/' }) <BR>return false <BR>}) <BR></script> > <BR><BR>플러그인의 소스 코드도 매우 간단합니다. <BR> <BR><BR></script> </title> </div> <br><strong>코드 복사</strong><br><div class="codetitle"> 코드는 다음과 같습니다.<span><a style="CURSOR: pointer" data="87711" class="copybut" id="copybut87711" onclick="doCopy('code87711')"> <u>jQuery.cookie = function(name, value, options) { </u>if (typeof value != 'undefine') { // 이름과 값이 지정되면 설정됩니다. 쿠키 </a>options = 옵션 || {} ; </span>if (값 === null) { </div>value = '' <div class="codebody" id="code87711">options.expires = <br>} <br>var 만료 = ''; if (options .expires && (typeof options.expires == 'number' || options.expires.toUTCString)) { <br>var date <br>if (typeof options.expires = = '숫자') { <br>date = new Date(); <br>date.setTime(date.getTime() (options.expires * 24 * 60 * 60 * 1000)) else { <br>date = options.expires; <br> } <br>expires=' date.toUTCString(); <br>} <br>var path = options.path ? 경로) : ''; var domain = options.domain=' (options.domain) : '' var secure = options.secure' : ''; >document.cookie = [이름, '=' , encodeURIComponent(값), 만료, 경로, 도메인, 보안].join('') <br>} else { <br>var cookieValue = <br>if; (document.cookie && document.cookie != ' ') { <br>var cookie = document.cookie.split(';') <br>for (var i = 0; i < cookie.length; i ) { <br>var cookie = jQuery.trim(cookie[i]) <br>if (cookie.substring(0, name.length 1) == (name '=')) { <br>cookieValue = decodeURIComponent( cookie.substring(name.length 1)); <br>break; <br>} <br>} <br>return cookieValue <br>} <br><br><br><br>쿠키 플러그인<br> <br><br>다음을 참조할 수도 있습니다. <br><br>jquery 쿠키 플러그인 코드 클래스<br> </div>