JavaScript COOKIE 操作总结

爽快 直接贴上代码

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>cookie</title>
</head>
<body>
    <button type="button" onclick="SetCookie('pcy1','pangchengyong1')">SetCookie</button>
    <button type="button" onclick="getCookie('pcy')">getCookie</button>
    <button type="button" onclick="DelCookie('pcy')">DelCookie</button>
</body>
</html>
<script>

/*****************************************
根据name取得存在cookie中的值
*******************************************/
function getCookie(name){
    // 获取所有的cookie  
    var value = document.cookie;
    // 将cookie 转换成数组格式
    var arr1 = value.split(";");
    // 循环判断 传入的name 是否与cookie的name相同
    for(i=0;i<arr1.length;i++){
        if(value.length == 0){
          break;
        }
        // 获取 cookie的 name
        sName = arr1[i].split("=")[0];
        // 如果 name==name 就显示val
        if(sName==name){
            return arr1[i].split("=")[1];
        }
    }

    return null;  
}

/*****************************************
    设置cookie的内容
*******************************************/
function SetCookie(sName,sValue){
    //有点类似与匿名类哦
    var expires = function(){
        //cookie失效时间为从建立起48小时一内
        var mydate = new Date();
        mydate.setTime(mydate.getTime + 48*60*60*1000);
        return mydate.toGMTString();
      }

      if(sName.length!=0 && sValue.length!=0){
        document.cookie = sName + "=" + sValue + ";expires=" + expires;
      }else{
        alert("您的填写有空!");
      }
}

/*****************************************
    删除cookie
*******************************************/
function DelCookie(sName,sValue){
    //删除一个指定的cookie键值对
    document.cookie = sName + "=" + escape(sValue) + ";expires=Fri, 31 Dec 1999 23:59:59 GMT;";
}

/*****************************************
    删除cookie
*******************************************/
function DelCookie(sName){
    var sValue=getCookie(sName);
    if(sValue!=null){
        document.cookie = sName + "=" + escape(sValue) + ";expires=Fri, 31 Dec 1999 23:59:59 GMT;";
    }    
}

/*****************************************
    清空cookie
*******************************************/
function clearCookie(){
    var value = document.cookie;
    var arr1 = value.split(";");
    for(i=arr1.length-1;i>=0;i--){
        if(value.length == 0){
          break;
    }
    sName = arr1[i].split("=")[0];
    sValue = arr1[i].split("=")[1]
    document.cookie = sName + "=" + escape(sValue) + ";expires=Fri, 31 Dec 1999 23:59:59 GMT;";
  }
}
</script>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值