생성
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('이름');
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7930 | 9년 전 | 378 | ||
| 7929 | 9년 전 | 272 | ||
| 7928 | 9년 전 | 380 | ||
| 7927 | 9년 전 | 301 | ||
| 7926 | 9년 전 | 648 | ||
| 7925 | 9년 전 | 322 | ||
| 7924 | 9년 전 | 294 | ||
| 7923 | 9년 전 | 324 | ||
| 7922 | 9년 전 | 349 | ||
| 7921 | 9년 전 | 379 | ||
| 7920 | 9년 전 | 301 | ||
| 7919 | 9년 전 | 314 | ||
| 7918 | 9년 전 | 478 | ||
| 7917 | 9년 전 | 319 | ||
| 7916 | 9년 전 | 386 | ||
| 7915 | 9년 전 | 374 | ||
| 7914 | 9년 전 | 386 | ||
| 7913 | 9년 전 | 510 | ||
| 7912 | 9년 전 | 386 | ||
| 7911 | 9년 전 | 335 | ||
| 7910 | 9년 전 | 372 | ||
| 7909 | 9년 전 | 475 | ||
| 7908 | 9년 전 | 377 | ||
| 7907 | 9년 전 | 329 | ||
| 7906 | 9년 전 | 344 | ||
| 7905 | 9년 전 | 334 | ||
| 7904 | 9년 전 | 306 | ||
| 7903 | 9년 전 | 307 | ||
| 7902 | 9년 전 | 523 | ||
| 7901 |
|
9년 전 | 719 | |
| 7900 | 9년 전 | 545 | ||
| 7899 | 9년 전 | 352 | ||
| 7898 | 9년 전 | 343 | ||
| 7897 | 9년 전 | 302 | ||
| 7896 | 9년 전 | 328 | ||
| 7895 | 9년 전 | 431 | ||
| 7894 | 9년 전 | 355 | ||
| 7893 | 9년 전 | 292 | ||
| 7892 | 9년 전 | 337 | ||
| 7891 | 9년 전 | 725 | ||
| 7890 | 9년 전 | 1180 | ||
| 7889 | 9년 전 | 736 | ||
| 7888 |
limsy1987
|
9년 전 | 531 | |
| 7887 | 9년 전 | 510 | ||
| 7886 | 9년 전 | 399 | ||
| 7885 | 9년 전 | 369 | ||
| 7884 | 9년 전 | 379 | ||
| 7883 | 9년 전 | 366 | ||
| 7882 | 9년 전 | 383 | ||
| 7881 | 9년 전 | 407 | ||
| 7880 | 9년 전 | 528 | ||
| 7879 | 9년 전 | 426 | ||
| 7878 | 9년 전 | 1167 | ||
| 7877 | 9년 전 | 716 | ||
| 7876 | 9년 전 | 446 | ||
| 7875 | 9년 전 | 518 | ||
| 7874 |
|
9년 전 | 786 | |
| 7873 | 9년 전 | 486 | ||
| 7872 | 9년 전 | 626 | ||
| 7871 | 9년 전 | 453 | ||
| 7870 | 9년 전 | 578 | ||
| 7869 | 9년 전 | 395 | ||
| 7868 | 9년 전 | 391 | ||
| 7867 | 9년 전 | 388 | ||
| 7866 | 9년 전 | 452 | ||
| 7865 | 9년 전 | 410 | ||
| 7864 | 9년 전 | 474 | ||
| 7863 | 9년 전 | 462 | ||
| 7862 | 9년 전 | 441 | ||
| 7861 | 9년 전 | 599 | ||
| 7860 | 9년 전 | 597 | ||
| 7859 | 9년 전 | 375 | ||
| 7858 | 9년 전 | 678 | ||
| 7857 | 9년 전 | 1032 | ||
| 7856 | 9년 전 | 493 | ||
| 7855 | 9년 전 | 711 | ||
| 7854 | 9년 전 | 703 | ||
| 7853 | 9년 전 | 548 | ||
| 7852 | 9년 전 | 475 | ||
| 7851 | 9년 전 | 455 | ||
| 7850 | 9년 전 | 553 | ||
| 7849 | 9년 전 | 324 | ||
| 7848 | 9년 전 | 377 | ||
| 7847 | 9년 전 | 598 | ||
| 7846 | 9년 전 | 416 | ||
| 7845 | 9년 전 | 377 | ||
| 7844 | 9년 전 | 370 | ||
| 7843 | 9년 전 | 383 | ||
| 7842 | 9년 전 | 372 | ||
| 7841 | 9년 전 | 358 | ||
| 7840 | 9년 전 | 367 | ||
| 7839 | 9년 전 | 403 | ||
| 7838 | 9년 전 | 485 | ||
| 7837 | 9년 전 | 329 | ||
| 7836 | 9년 전 | 366 | ||
| 7835 | 9년 전 | 448 | ||
| 7834 |
|
9년 전 | 1176 | |
| 7833 | 9년 전 | 384 | ||
| 7832 | 9년 전 | 386 | ||
| 7831 | 9년 전 | 517 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기