생성
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('이름');
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 2530 |
|
15년 전 | 2609 | |
| 2529 |
|
15년 전 | 1323 | |
| 2528 | 15년 전 | 1022 | ||
| 2527 | 15년 전 | 1496 | ||
| 2526 | 15년 전 | 898 | ||
| 2525 | 15년 전 | 1195 | ||
| 2524 | 15년 전 | 1092 | ||
| 2523 | 15년 전 | 1492 | ||
| 2522 |
NY더지더지
|
15년 전 | 1631 | |
| 2521 | 15년 전 | 899 | ||
| 2520 |
|
15년 전 | 1310 | |
| 2519 |
|
15년 전 | 1101 | |
| 2518 | 15년 전 | 930 | ||
| 2517 |
|
15년 전 | 1005 | |
| 2516 | 15년 전 | 1321 | ||
| 2515 | 15년 전 | 761 | ||
| 2514 | 15년 전 | 944 | ||
| 2513 | 15년 전 | 2599 | ||
| 2512 |
|
15년 전 | 1412 | |
| 2511 |
|
15년 전 | 783 | |
| 2510 |
|
15년 전 | 813 | |
| 2509 | 15년 전 | 1258 | ||
| 2508 | 15년 전 | 1292 | ||
| 2507 | 15년 전 | 1544 | ||
| 2506 | 15년 전 | 1024 | ||
| 2505 | 15년 전 | 1394 | ||
| 2504 |
JMoon
|
15년 전 | 692 | |
| 2503 |
|
15년 전 | 1040 | |
| 2502 | 15년 전 | 1300 | ||
| 2501 | 15년 전 | 2714 | ||
| 2500 | 15년 전 | 1078 | ||
| 2499 | 15년 전 | 1051 | ||
| 2498 | 15년 전 | 951 | ||
| 2497 |
첫만남의감격
|
15년 전 | 827 | |
| 2496 |
|
15년 전 | 837 | |
| 2495 |
|
15년 전 | 3430 | |
| 2494 |
soulfuleyes
|
15년 전 | 2800 | |
| 2493 | 15년 전 | 1984 | ||
| 2492 | 15년 전 | 2432 | ||
| 2491 | 15년 전 | 1521 | ||
| 2490 | 15년 전 | 1062 | ||
| 2489 | 15년 전 | 1061 | ||
| 2488 | 15년 전 | 2337 | ||
| 2487 | 15년 전 | 880 | ||
| 2486 | 15년 전 | 1924 | ||
| 2485 |
못말리는크리스
|
15년 전 | 723 | |
| 2484 |
|
15년 전 | 1875 | |
| 2483 | 15년 전 | 811 | ||
| 2482 | 15년 전 | 2485 | ||
| 2481 | 15년 전 | 726 | ||
| 2480 | 15년 전 | 1161 | ||
| 2479 | 15년 전 | 710 | ||
| 2478 |
|
15년 전 | 2881 | |
| 2477 | 15년 전 | 1256 | ||
| 2476 | 15년 전 | 1289 | ||
| 2475 | 15년 전 | 1299 | ||
| 2474 | 15년 전 | 1361 | ||
| 2473 | 15년 전 | 975 | ||
| 2472 | 15년 전 | 1735 | ||
| 2471 | 15년 전 | 1263 | ||
| 2470 | 15년 전 | 841 | ||
| 2469 | 15년 전 | 2700 | ||
| 2468 | 15년 전 | 1089 | ||
| 2467 | 15년 전 | 1283 | ||
| 2466 | 15년 전 | 1083 | ||
| 2465 | 15년 전 | 1939 | ||
| 2464 | 15년 전 | 1948 | ||
| 2463 | 15년 전 | 1611 | ||
| 2462 | 15년 전 | 964 | ||
| 2461 | 15년 전 | 1206 | ||
| 2460 | 15년 전 | 894 | ||
| 2459 | 15년 전 | 836 | ||
| 2458 | 15년 전 | 1081 | ||
| 2457 | 15년 전 | 2443 | ||
| 2456 | 15년 전 | 2467 | ||
| 2455 | 15년 전 | 1445 | ||
| 2454 | 15년 전 | 993 | ||
| 2453 | 15년 전 | 1145 | ||
| 2452 | 15년 전 | 1154 | ||
| 2451 | 15년 전 | 1016 | ||
| 2450 | 15년 전 | 920 | ||
| 2449 | 15년 전 | 851 | ||
| 2448 | 15년 전 | 1210 | ||
| 2447 | 15년 전 | 1158 | ||
| 2446 | 15년 전 | 906 | ||
| 2445 | 15년 전 | 873 | ||
| 2444 | 15년 전 | 1050 | ||
| 2443 | 15년 전 | 1523 | ||
| 2442 | 15년 전 | 1052 | ||
| 2441 | 15년 전 | 1383 | ||
| 2440 |
|
15년 전 | 1216 | |
| 2439 | 15년 전 | 1891 | ||
| 2438 |
|
15년 전 | 2950 | |
| 2437 |
|
15년 전 | 2284 | |
| 2436 |
|
15년 전 | 884 | |
| 2435 |
|
15년 전 | 1892 | |
| 2434 |
|
15년 전 | 2079 | |
| 2433 |
|
15년 전 | 1380 | |
| 2432 | 15년 전 | 1356 | ||
| 2431 | 15년 전 | 2623 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기