생성
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('이름');
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8230 | 9년 전 | 89 | ||
| 8229 | 9년 전 | 85 | ||
| 8228 |
커네드커네드
|
9년 전 | 126 | |
| 8227 | 9년 전 | 146 | ||
| 8226 | 9년 전 | 177 | ||
| 8225 | 9년 전 | 165 | ||
| 8224 | 9년 전 | 158 | ||
| 8223 | 9년 전 | 125 | ||
| 8222 |
|
9년 전 | 202 | |
| 8221 | 9년 전 | 105 | ||
| 8220 | 9년 전 | 124 | ||
| 8219 | 9년 전 | 115 | ||
| 8218 | 9년 전 | 161 | ||
| 8217 |
star3840
|
9년 전 | 124 | |
| 8216 | 9년 전 | 174 | ||
| 8215 | 9년 전 | 133 | ||
| 8214 | 9년 전 | 235 | ||
| 8213 | 9년 전 | 179 | ||
| 8212 | 9년 전 | 93 | ||
| 8211 | 9년 전 | 270 | ||
| 8210 | 9년 전 | 265 | ||
| 8209 | 9년 전 | 350 | ||
| 8208 | 9년 전 | 236 | ||
| 8207 | 9년 전 | 243 | ||
| 8206 |
|
9년 전 | 206 | |
| 8205 | 9년 전 | 186 | ||
| 8204 | 9년 전 | 151 | ||
| 8203 | 9년 전 | 242 | ||
| 8202 | 9년 전 | 157 | ||
| 8201 | 9년 전 | 194 | ||
| 8200 | 9년 전 | 178 | ||
| 8199 | 9년 전 | 231 | ||
| 8198 | 9년 전 | 193 | ||
| 8197 | 9년 전 | 179 | ||
| 8196 | 9년 전 | 568 | ||
| 8195 | 9년 전 | 177 | ||
| 8194 | 9년 전 | 296 | ||
| 8193 | 9년 전 | 173 | ||
| 8192 | 9년 전 | 216 | ||
| 8191 | 9년 전 | 157 | ||
| 8190 | 9년 전 | 151 | ||
| 8189 | 9년 전 | 208 | ||
| 8188 | 9년 전 | 141 | ||
| 8187 | 9년 전 | 160 | ||
| 8186 | 9년 전 | 155 | ||
| 8185 | 9년 전 | 335 | ||
| 8184 | 9년 전 | 122 | ||
| 8183 | 9년 전 | 338 | ||
| 8182 | 9년 전 | 186 | ||
| 8181 | 9년 전 | 150 | ||
| 8180 | 9년 전 | 717 | ||
| 8179 | 9년 전 | 502 | ||
| 8178 | 9년 전 | 322 | ||
| 8177 |
kiplayer
|
9년 전 | 344 | |
| 8176 | 9년 전 | 372 | ||
| 8175 | 9년 전 | 241 | ||
| 8174 | 9년 전 | 263 | ||
| 8173 | 9년 전 | 357 | ||
| 8172 | 9년 전 | 216 | ||
| 8171 | 9년 전 | 193 | ||
| 8170 | 9년 전 | 307 | ||
| 8169 |
커네드커네드
|
9년 전 | 270 | |
| 8168 | 9년 전 | 338 | ||
| 8167 | 9년 전 | 333 | ||
| 8166 | 9년 전 | 254 | ||
| 8165 | 9년 전 | 187 | ||
| 8164 | 9년 전 | 315 | ||
| 8163 | 9년 전 | 298 | ||
| 8162 | 9년 전 | 315 | ||
| 8161 | 9년 전 | 312 | ||
| 8160 |
|
9년 전 | 509 | |
| 8159 | 9년 전 | 443 | ||
| 8158 | 9년 전 | 266 | ||
| 8157 | 9년 전 | 398 | ||
| 8156 | 9년 전 | 284 | ||
| 8155 | 9년 전 | 274 | ||
| 8154 |
00년생용띠
|
9년 전 | 615 | |
| 8153 | 9년 전 | 248 | ||
| 8152 |
|
9년 전 | 428 | |
| 8151 | 9년 전 | 426 | ||
| 8150 | 9년 전 | 519 | ||
| 8149 |
Jangfolk
|
9년 전 | 365 | |
| 8148 | 9년 전 | 186 | ||
| 8147 | 9년 전 | 391 | ||
| 8146 | 9년 전 | 460 | ||
| 8145 | 9년 전 | 409 | ||
| 8144 | 9년 전 | 369 | ||
| 8143 | 9년 전 | 213 | ||
| 8142 | 9년 전 | 443 | ||
| 8141 | 9년 전 | 392 | ||
| 8140 | 9년 전 | 942 | ||
| 8139 | 9년 전 | 279 | ||
| 8138 |
전갈자리남자
|
9년 전 | 403 | |
| 8137 | 9년 전 | 413 | ||
| 8136 | 9년 전 | 762 | ||
| 8135 |
|
9년 전 | 811 | |
| 8134 |
PlayPixel
|
9년 전 | 535 | |
| 8133 |
|
9년 전 | 458 | |
| 8132 | 9년 전 | 474 | ||
| 8131 | 9년 전 | 826 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기