javascript操作cookie

來源:互聯網
上載者:User
cookie

問題:
    使得在訪問頁面的時候能夠沿用上次的設定,或者在不同的頁面間共用資料。比如使用者在訪問網站的時候設定了頁面字型的大小,那麼會希望下次訪問的時候仍然能使用同樣的設定進行瀏覽,而不用重複設定。
解決方案:
    在使用者瀏覽頁面並進行設定時,將這些設定儲存在cookie中,下次訪問的時候讀取cookie中的設定。
    參考下面的指令碼:

    // utility function to retrieve an expiration data in proper format;
    function getExpDate(days, hours, minutes)
    {
        var expDate = new Date();
        if(typeof(days) == "number" && typeof(hours) == "number" && typeof(hours) == "number")
        {
            expDate.setDate(expDate.getDate() + parseInt(days));
            expDate.setHours(expDate.getHours() + parseInt(hours));
            expDate.setMinutes(expDate.getMinutes() + parseInt(minutes));
            return expDate.toGMTString();
        }
    }

    //utility function called by getCookie()
    function getCookieVal(offset)
    {
        var endstr = document.cookie.indexOf(";", offset);
        if(endstr == -1)
        {
            endstr = document.cookie.length;
        }
        return unescape(document.cookie.substring(offset, endstr));
    }

    // primary function to retrieve cookie by name
    function getCookie(name)
    {
        var arg = name + "=";
        var alen = arg.length;
        var clen = document.cookie.length;
        var i = 0;
        while(i < clen)
        {
            var j = i + alen;
            if (document.cookie.substring(i, j) == arg)
            {
                return getCookieVal(j);
            }
            i = document.cookie.indexOf(" ", i) + 1;
            if(i == 0) break;
        }
        return;
    }

    // store cookie value with optional details as needed
    function setCookie(name, value, expires, path, domain, secure)
    {
        document.cookie = name + "=" + escape(value) +
            ((expires) ? "; expires=" + expires : "") +
            ((path) ? "; path=" + path : "") +
            ((domain) ? "; domain=" + domain : "") +
            ((secure) ? "; secure" : "");
    }

    // remove the cookie by setting ancient expiration date
    function deleteCookie(name,path,domain)
    {
        if(getCookie(name))
        {
            document.cookie = name + "=" +
                ((path) ? "; path=" + path : "") +
                ((domain) ? "; domain=" + domain : "") +
                "; expires=Thu, 01-Jan-70 00:00:01 GMT";
        }
    }
    使用getCookie(name)函數來讀取cookie中儲存的值,參數name為cookie項的名稱。如果該cookie項不存在則返回一個Null 字元串。
    使用setCookie()函數來儲存cookie項的值,其中第一、二兩個參數分別為cookie項的名稱和值。如果想為其設定一個到期時間,那麼就需要設定第三個參數,這裡需要通過getExpDate()獲得一個正確格式的參數。
    最後,使用deleteCookie()來刪除一個已存在的cookie項,實際上是通過讓該項到期。
    cookie將資料儲存在用戶端。頁面的指令碼只能讀取所在域和伺服器的cookie值,如果域內有多個伺服器,那麼需要設定第五個參數,以指定伺服器。瀏覽器的容量一般限定為每伺服器20個name/value對,每個cookie項不超過4000個字元,更現實點,單個cookie項應少於2000字元,也就是說不要用cookie在用戶端儲存大容量資料。
    不同的瀏覽器儲存cookie的方式也有所不同。IE為每個域的cookie建立一個文字檔,而Netscape則將所有的cookie儲存在同一個文字檔中。
    注意:cookie存放在用戶端,所以會受到瀏覽器設定的影響,比如使用者可能會禁用cookie。要檢測瀏覽器是否支援cookie,使用屬性navigator.cookieEnabled來判斷。


    參考: (Oreilly) Java Script And Dhtml Cookbook.chm



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.