2010. 12. 30. 09:23
반응형

 

  • <script type="text/javascript" src="/js/jquery_cookie.js"></script>
  • <script type="text/javascript">
  • // 쿠키에서 값 불러오기
  • alert($.cookie("쿠키이름"));
  •  
  • // 쿠키에 값 저장
  • $.cookie("쿠키이름", "값");
  • </script>

 

  • 쿠키 저장시 옵션이 필요하신 경우 옵션을 넣으실 수 있습니다.

$.cookie("쿠키이름", "값", 옵션);

옵션 내용

{expires:'',domain:'', path:'', secure:''}
ex) $.cookie("test","1", {path:'/'});


(출처를 모르겠네요.. 알려주시면 반영하겠습니다.)
반응형

'Front-Html > Jquery' 카테고리의 다른 글

jquery iframe load 처리  (2) 2011.12.05
jQuery로 select box tag Control  (1) 2011.10.27
iframe 높이 자동 조절  (1) 2011.10.19
jquery plugin blockUI  (1) 2010.04.09
jquery  (2) 2010.04.07
Posted by seongsland