清除所有cookie及其他操作

JavaScript是运行在客户端的脚本,因此一般是不能够设置Session的,因为Session是运行在服务器端的。
cookie是运行在客户端的,所以可以用JS来设置cookie.

设置cookie

function setCookie(name,value){
    var Days = 30;
    var exp = new Date();
    exp.setTime(exp.getTime() + Days*24*60*60*1000);
    document.cookie = name + "="+ escape (value) + ";expires=" + exp.toGMTString();
}

获取cookie

function getCookie(name){
    var arr,reg=new RegExp("(^| )"+name+"=([^;]*)(;|$)");
    if(arr=document.cookie.match(reg)){
        return unescape(arr[2]);
    }else{
        return null;
    }
}

删除cookie

function delCookie(name){
    var exp = new Date();
    exp.setTime(exp.getTime() - 1);
    var cval=getCookie(name);
    if(cval!=null){
        document.cookie= name + "="+cval+";expires="+exp.toGMTString();
    } 
}

清除所有cookie

function clearAllCookie() {
    var date=new Date();
    date.setTime(date.getTime()-10000);
    var keys=document.cookie.match(/[^ =;]+(?=\=)/g);
    console.log("需要删除的cookie名字:"+keys);
    if (keys) {
        for (var i =  keys.length; i--;)
            document.cookie=keys[i]+"=0; expire="+date.toGMTString()+"; path=/";
    }
}

   转载规则


《清除所有cookie及其他操作》 echo丶若梦 采用 知识共享署名 4.0 国际许可协议 进行许可。
 上一篇
hexo 一键部署 hexo 一键部署
hexo+github建站博客的教程网上的资料已经很成熟了,很多没有服务器小伙伴大多用hexo+github来搭建博客的, 为了方便部署发布文章,这里写了一个 一键部署的脚本 hexo常用命令 hexo clean 清除缓存文件 db.
2019-09-12
下一篇 
linux 判断文件夹或文件是否存在 linux 判断文件夹或文件是否存在
文件夹不存在则创建if [ ! -d "/data/" ];then mkdir /data else echo "文件夹已经存在" fi 文件存在则删除if [ ! -f "/data/filename" ];then echo "文件不
2019-09-05 echo丶若梦
  目录