Html & Script

[javascript] 쿠키 굽기,쿠키 얻기

컨텐츠 정보

본문

쿠키굽기
setCookie("이름","값","저장할날");

쿠키얻기
var value = getCookie("이름");
 
목록보기  클립에복사 | 인쇄하기 
 
/*

제작자이름 : 무화
제작자메일 : muhwa@yahoo.com
관련사이트 : http://muhwa.webice.co.kr

*/

<script>
function setCookie(name,value,day){
    var today= new Date();
    today.setDate(today.getDate() + day);
    document.cookie = name + "=" + escape(value) + "; path=/; expires=" + today.toGMTString() + ";"
}
function getCookie(name){
    var re = new RegExp("\\\\b"+name+"\\\\=([^;]*)","ig");
    document.cookie.match(re)
    return unescape(RegExp.$1);
}
</script> 
 

관련자료

댓글 0
등록된 댓글이 없습니다.
Today's proverb
진정한 기쁨은 나의 아집을 버려 갈 때마다 느껴오는 타인의 대한 배려의식에서 오는 이해이다. 이로써 서로에 대한 존경과 용서가 함께하게 되는 것이다.