생성
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('이름');
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8030 | 9년 전 | 383 | ||
| 8029 | 9년 전 | 314 | ||
| 8028 | 9년 전 | 270 | ||
| 8027 | 9년 전 | 286 | ||
| 8026 | 9년 전 | 346 | ||
| 8025 | 9년 전 | 392 | ||
| 8024 | 9년 전 | 350 | ||
| 8023 | 9년 전 | 397 | ||
| 8022 | 9년 전 | 324 | ||
| 8021 | 9년 전 | 333 | ||
| 8020 | 9년 전 | 324 | ||
| 8019 | 9년 전 | 346 | ||
| 8018 | 9년 전 | 450 | ||
| 8017 | 9년 전 | 540 | ||
| 8016 | 9년 전 | 338 | ||
| 8015 | 9년 전 | 394 | ||
| 8014 | 9년 전 | 329 | ||
| 8013 | 9년 전 | 243 | ||
| 8012 | 9년 전 | 247 | ||
| 8011 | 9년 전 | 450 | ||
| 8010 | 9년 전 | 306 | ||
| 8009 | 9년 전 | 299 | ||
| 8008 | 9년 전 | 291 | ||
| 8007 | 9년 전 | 433 | ||
| 8006 | 9년 전 | 469 | ||
| 8005 |
|
9년 전 | 971 | |
| 8004 | 9년 전 | 363 | ||
| 8003 | 9년 전 | 428 | ||
| 8002 | 9년 전 | 325 | ||
| 8001 |
|
9년 전 | 668 | |
| 8000 | 9년 전 | 428 | ||
| 7999 | 9년 전 | 380 | ||
| 7998 | 9년 전 | 437 | ||
| 7997 | 9년 전 | 316 | ||
| 7996 | 9년 전 | 537 | ||
| 7995 | 9년 전 | 461 | ||
| 7994 | 9년 전 | 342 | ||
| 7993 | 9년 전 | 403 | ||
| 7992 | 9년 전 | 519 | ||
| 7991 | 9년 전 | 257 | ||
| 7990 | 9년 전 | 297 | ||
| 7989 | 9년 전 | 310 | ||
| 7988 | 9년 전 | 736 | ||
| 7987 | 9년 전 | 433 | ||
| 7986 | 9년 전 | 429 | ||
| 7985 | 9년 전 | 513 | ||
| 7984 | 9년 전 | 435 | ||
| 7983 | 9년 전 | 666 | ||
| 7982 | 9년 전 | 528 | ||
| 7981 | 9년 전 | 481 | ||
| 7980 | 9년 전 | 501 | ||
| 7979 | 9년 전 | 485 | ||
| 7978 | 9년 전 | 459 | ||
| 7977 | 9년 전 | 397 | ||
| 7976 | 9년 전 | 855 | ||
| 7975 | 9년 전 | 366 | ||
| 7974 | 9년 전 | 400 | ||
| 7973 | 9년 전 | 603 | ||
| 7972 | 9년 전 | 389 | ||
| 7971 | 9년 전 | 464 | ||
| 7970 | 9년 전 | 307 | ||
| 7969 | 9년 전 | 549 | ||
| 7968 | 9년 전 | 389 | ||
| 7967 | 9년 전 | 380 | ||
| 7966 | 9년 전 | 376 | ||
| 7965 |
|
9년 전 | 1020 | |
| 7964 | 9년 전 | 402 | ||
| 7963 | 9년 전 | 405 | ||
| 7962 | 9년 전 | 388 | ||
| 7961 |
전갈자리남자
|
9년 전 | 510 | |
| 7960 | 9년 전 | 971 | ||
| 7959 | 9년 전 | 556 | ||
| 7958 | 9년 전 | 410 | ||
| 7957 | 9년 전 | 369 | ||
| 7956 | 9년 전 | 371 | ||
| 7955 | 9년 전 | 464 | ||
| 7954 | 9년 전 | 387 | ||
| 7953 | 9년 전 | 438 | ||
| 7952 | 9년 전 | 361 | ||
| 7951 | 9년 전 | 506 | ||
| 7950 | 9년 전 | 399 | ||
| 7949 | 9년 전 | 392 | ||
| 7948 | 9년 전 | 328 | ||
| 7947 | 9년 전 | 943 | ||
| 7946 | 9년 전 | 444 | ||
| 7945 | 9년 전 | 401 | ||
| 7944 | 9년 전 | 431 | ||
| 7943 | 9년 전 | 389 | ||
| 7942 | 9년 전 | 410 | ||
| 7941 | 9년 전 | 402 | ||
| 7940 | 9년 전 | 889 | ||
| 7939 | 9년 전 | 360 | ||
| 7938 | 9년 전 | 395 | ||
| 7937 | 9년 전 | 289 | ||
| 7936 | 9년 전 | 887 | ||
| 7935 | 9년 전 | 456 | ||
| 7934 | 9년 전 | 425 | ||
| 7933 | 9년 전 | 528 | ||
| 7932 | 9년 전 | 495 | ||
| 7931 | 9년 전 | 546 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기