码迷,mamicode.com
首页 > Web开发 > 详细

js封装cookie

时间:2020-05-31 21:39:24      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:pat   split   get   title   org   new   ble   div   w3c   

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <title>封装cookie</title>
    <script>
       function setCookie(name,value,iDay){
        var oDate=new Date();
        oDate.setDate(oDate.getDate()+iDay);

        document.cookie=name+=+value+;expires=+oDate;
       }

       function getCookie(name){
           var arr=document.cookie.split(; );
           for(var i=0;i<arr.length;i++){
            var arr2=arr[i].split(=);

            if(arr2[0]==name){
                return arr2[1];
            }
           }
           return ‘‘;
       }

       function removeCookie(name){
        setCookie(name,1,-1);
       }


       setCookie(name,sdsd);
       alert(getCookie(name));
       removeCookie(name);
    </script>
    </head>

    <body>
  
    </body>
    </html>

 

js封装cookie

标签:pat   split   get   title   org   new   ble   div   w3c   

原文地址:https://www.cnblogs.com/sunnywindycloudy/p/13021394.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!