Use JavaScript to set, read, and delete cookies

Code

// 设置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();
    }
}

There is a WeChat mini program course design, complete design needs, contact personal QQ: 505417246

Pay attention to the following WeChat public account, you can receive WeChat applet, Vue, TypeScript, front-end, uni-app, full-stack, Nodejs, Python and other practical learning materials. The
latest and most complete front-end knowledge summary and project source code will be released to the WeChat public as soon as possible Number, please pay attention, thank you

After paying attention to the official account , reply to the front-end interview questions and receive a large number of front-end interview questions summary pdf data
Insert picture description here

Guess you like

Origin blog.csdn.net/m0_46171043/article/details/115262952