cookie存儲和過期時間的設置


<html>

    <head>
        <title></title>
    </head>

    <body>

    </body>
    <script type="text/javascript">
        //cname 名字
        //cvalue 值
        //exdays 時間            0.01大概25分鍾
        function setCookie(cname, cvalue, exdays) {
            var d = new Date();
            d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
            var expires = "expires=" + d.toUTCString();
         document.cookie = cname + "=" + cvalue + "; " + expires+"; path=/" 這個很重要代表在那個層級下可以訪問cookie
            console.log(d)
        }

    

        //獲取cookie
        function getCookie(cname) {
            var name = cname + "=";
            var ca = document.cookie.split(';');
            for(var i = 0; i < ca.length; i++) {
                var c = ca[i];
                while(c.charAt(0) == ' ') c = c.substring(1);
                if(c.indexOf(name) != -1) return c.substring(name.length, c.length);
            }
            return "";
        }

        //刪除 cookie
        function clearCookie(name) {
            setCookie(name, "", -1);
        }
        
    </script>

</html>

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM