생성
function setCookie( cookieName, cookieValue, expireDate )
{
var today = new Date();
today.setDate( today.getDate() + parseInt( expireDate ) );
document.cookie = cookieName + "=" + escape( cookieValue ) + "; path=/; expires=" + today.toGMTString() + ";"
}
setCookie('이름','값',시간);
사용 불러오기
function getCookie( cookieName ){
var search = cookieName + "=";
var cookie = document.cookie;
// 현재 쿠키가 존재할 경우
if( cookie.length > 0 ){
// 해당 쿠키명이 존재하는지 검색한 후 존재하면 위치를 리턴.
startIndex = cookie.indexOf( cookieName );
// 만약 존재한다면
if( startIndex != -1 ){
// 값을 얻어내기 위해 시작 인덱스 조절
startIndex += cookieName.length;
// 값을 얻어내기 위해 종료 인덱스 추출
endIndex = cookie.indexOf( ";", startIndex );
// 만약 종료 인덱스를 못찾게 되면 쿠키 전체길이로 설정
if( endIndex == -1) endIndex = cookie.length;
// 쿠키값을 추출하여 리턴
return unescape( cookie.substring( startIndex + 1, endIndex ) );
} else{ // 쿠키 내에 해당 쿠키가 존재하지 않을 경우
return false;
}
} else { // 쿠키 자체가 없을 경우
return false;
}
}
getCookie('이름);
삭제
function deleteCookie( cookieName )
{
var expireDate = new Date();
//어제 날짜를 쿠키 소멸 날짜로 설정한다.
expireDate.setDate( expireDate.getDate() - 1 );
document.cookie = cookieName + "= ; expires=" + expireDate.toGMTString() + "; path=/";
}
deleteCookie('이름');
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 230 | 20년 전 | 2078 | ||
| 229 | 20년 전 | 3146 | ||
| 228 | 20년 전 | 3335 | ||
| 227 | 20년 전 | 2412 | ||
| 226 | 20년 전 | 5493 | ||
| 225 | 20년 전 | 2530 | ||
| 224 | 20년 전 | 2971 | ||
| 223 | 20년 전 | 4211 | ||
| 222 | 20년 전 | 2611 | ||
| 221 | 20년 전 | 2297 | ||
| 220 | 20년 전 | 3684 | ||
| 219 | 20년 전 | 2083 | ||
| 218 | 20년 전 | 3573 | ||
| 217 | 20년 전 | 2489 | ||
| 216 | 20년 전 | 2925 | ||
| 215 | 20년 전 | 2233 | ||
| 214 | 20년 전 | 3345 | ||
| 213 | 20년 전 | 2924 | ||
| 212 | 20년 전 | 3063 | ||
| 211 | 20년 전 | 2153 | ||
| 210 | 20년 전 | 1908 | ||
| 209 | 20년 전 | 2365 | ||
| 208 | 20년 전 | 1991 | ||
| 207 | 20년 전 | 1685 | ||
| 206 | 20년 전 | 1861 | ||
| 205 | 20년 전 | 3955 | ||
| 204 | 20년 전 | 1683 | ||
| 203 | 20년 전 | 2020 | ||
| 202 | 20년 전 | 2361 | ||
| 201 | 20년 전 | 1836 | ||
| 200 | 20년 전 | 2964 | ||
| 199 | 20년 전 | 2010 | ||
| 198 | 20년 전 | 2092 | ||
| 197 | 20년 전 | 3663 | ||
| 196 | 20년 전 | 2996 | ||
| 195 | 20년 전 | 2104 | ||
| 194 | 20년 전 | 10258 | ||
| 193 | 20년 전 | 2255 | ||
| 192 | 20년 전 | 1611 | ||
| 191 | 20년 전 | 2677 | ||
| 190 | 20년 전 | 2297 | ||
| 189 | 20년 전 | 1697 | ||
| 188 | 20년 전 | 1494 | ||
| 187 | 20년 전 | 1918 | ||
| 186 | 20년 전 | 1742 | ||
| 185 | 20년 전 | 1786 | ||
| 184 | 20년 전 | 2371 | ||
| 183 | 20년 전 | 1576 | ||
| 182 | 20년 전 | 1491 | ||
| 181 | 20년 전 | 1633 | ||
| 180 | 20년 전 | 2732 | ||
| 179 | 20년 전 | 1815 | ||
| 178 | 20년 전 | 1864 | ||
| 177 | 20년 전 | 1991 | ||
| 176 | 20년 전 | 1809 | ||
| 175 | 20년 전 | 1877 | ||
| 174 | 20년 전 | 1701 | ||
| 173 | 20년 전 | 2062 | ||
| 172 | 20년 전 | 1791 | ||
| 171 | 20년 전 | 2571 | ||
| 170 | 20년 전 | 2283 | ||
| 169 | 20년 전 | 2562 | ||
| 168 | 20년 전 | 1495 | ||
| 167 | 20년 전 | 1586 | ||
| 166 | 20년 전 | 2166 | ||
| 165 | 20년 전 | 1643 | ||
| 164 | 20년 전 | 3779 | ||
| 163 | 20년 전 | 2680 | ||
| 162 | 20년 전 | 2098 | ||
| 161 | 20년 전 | 2810 | ||
| 160 | 20년 전 | 1742 | ||
| 159 | 20년 전 | 1622 | ||
| 158 | 20년 전 | 2571 | ||
| 157 | 20년 전 | 1499 | ||
| 156 | 20년 전 | 1747 | ||
| 155 | 20년 전 | 3236 | ||
| 154 | 20년 전 | 1912 | ||
| 153 | 20년 전 | 1631 | ||
| 152 | 20년 전 | 4968 | ||
| 151 | 20년 전 | 4588 | ||
| 150 | 20년 전 | 3523 | ||
| 149 | 20년 전 | 3811 | ||
| 148 | 20년 전 | 7092 | ||
| 147 | 20년 전 | 3561 | ||
| 146 | 20년 전 | 2637 | ||
| 145 | 20년 전 | 2628 | ||
| 144 | 20년 전 | 7174 | ||
| 143 | 20년 전 | 4613 | ||
| 142 | 20년 전 | 1905 | ||
| 141 | 20년 전 | 3255 | ||
| 140 | 20년 전 | 1970 | ||
| 139 | 20년 전 | 1592 | ||
| 138 | 20년 전 | 2315 | ||
| 137 | 20년 전 | 1791 | ||
| 136 | 20년 전 | 1463 | ||
| 135 | 20년 전 | 1800 | ||
| 134 | 20년 전 | 2972 | ||
| 133 | 20년 전 | 2456 | ||
| 132 | 20년 전 | 1712 | ||
| 131 | 20년 전 | 1659 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기