y

텍스트 박스의 내용을 쿠키로 저장하는 스크립트 입니다.

· 2007-06-11 (월) 12:44:52 · 3732
<HTML>
<HEAD>
<script>
function ReadCookie (Name)
{
    var search = Name + "="
    if (document.cookie.length > 0)
    {
        offset = document.cookie.indexOf(search)
        if (offset != -1)
        {
            offset += search.length
            end = document.cookie.indexOf(";", offset)
            if (end == -1)
                end = document.cookie.length
            return (document.cookie.substring(offset, end))
        }
        else
            return ("");
    }
    else
        return ("");
}
function WriteCookie (cookieName, cookieValue, expiry)
{
    var expDate = new Date();
    expDate.setTime (expDate.getTime() + expiry);
    document.cookie = cookieName + "=" + escape (cookieValue) + "; expires=" + expDate.toGMTString() + "; path=/";
}
function getCookies()
{
    document.noteForm.note.value = unescape(ReadCookie("note"));
}
</script>

</head>
<body>
<form NAME="noteForm">
<textarea ROWS="5" COLS="40" NAME="note" WRAP="VIRTUAL"></textarea><br>
<input TYPE="button" VALUE="Save Text" onClick="WriteCookie('note', document.noteForm.note.value, 2678400000)">
<INPUT TYPE="button" VALUE="새로고침" onClick='parent.location="javascript:location.reload()"'>
</form>
<script>
window.onload=function() { getCookies(); }
</script>
[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
MySQL 07-07-02 조회 5,775
MySQL 07-06-30 조회 5,338
기타 07-06-29 조회 5,236
기타 07-06-29 조회 5,194
PHP 07-06-28 조회 4,008
JavaScript 07-06-23 조회 3,678
기타 07-06-21 조회 4,084
MySQL 07-06-20 조회 1만
MySQL 07-06-20 조회 4,792
기타 07-06-20 조회 5,728
기타 07-06-19 조회 2,878
Flash 07-06-19 조회 1.2만
Flash 07-06-17 조회 3,761
JavaScript
[JavaScript]
07-06-16 조회 2,959
Flash 07-06-15 조회 5,167
기타 07-06-12 조회 4,652
기타 07-06-11 조회 3,733
PHP 07-06-05 조회 4,045
PHP 07-06-05 조회 4,727
MySQL 07-06-05 조회 4,689
기타 07-06-05 조회 5,465
Flash 07-05-31 조회 3,156
PHP 07-05-30 조회 4,117
MySQL
[MySQL]
07-05-26 조회 3,811
JavaScript 07-05-20 조회 4,601
기타 07-05-18 조회 6,531
기타 07-05-18 조회 4,405
MySQL 07-05-17 조회 1.3만
MySQL 07-05-17 조회 6,720
기타 07-05-17 조회 3,857