y

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

· 2007-06-11 (월) 12:44:52 · 2196
<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에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

팁게시판

6,077건

디자인과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
제목 글쓴이 날짜 조회
08-07-06 조회 2,318
08-05-21 조회 3,477
08-05-13 조회 3,343
08-04-17 조회 3,713
08-02-19 조회 2,488
08-01-18 조회 2,695
08-01-10 조회 2,686
07-10-22 조회 2,419
07-10-09 조회 3,154
07-10-03 조회 2,406
07-07-06 조회 2,973
07-07-06 조회 3,333
07-07-06 조회 2,950
07-06-28 조회 2,500
07-06-05 조회 2,365
07-06-05 조회 2,914
07-05-30 조회 2,241
07-05-02 조회 2,642
07-04-15 조회 3,991
07-04-11 조회 2,544
07-04-05 조회 2,817
07-03-31 조회 2,054
07-03-31 조회 2,981
07-03-30 조회 2,670
07-03-24 조회 2,971