我创建cookie的功能正确吗?如何删除程序开头的cookie ?有简单的编码吗?

function createCookie(name,value,days)
function setCookie(c_name,value,1) {
  document.cookie = c_name + "=" +escape(value);
}

setCookie('cookie_name',mac);

function eraseCookie(c_name) {
  createCookie(cookie_name,"",-1);
}

当前回答

我们没有在JavaScript中删除cookie的能力,所以要删除它,我们需要创建另一个日期较早的cookie。

集饼干

let expires = null
const cookieName = 'userlogin'
const d = new Date();
d.setTime(d.getTime() + 2 * 24 * 60 * 60 * 1000);
document.cookie = cookieName + "=" + value+ ";" + expires + ";path=/";

删除饼干

let expires = null
const d = new Date();
d.setTime(d.getTime() - 2 * 24 * 60 * 60 * 1000);
expires = "expires=" + d.toUTCString();
document.cookie = 'userlogin' + "=" + value+ ";" + expires + ";path=/";

其他回答

这里有一个关于quirkmode的链接。

function setCookie(name,value,days) {
    var expires = "";
    if (days) {
        var date = new Date();
        date.setTime(date.getTime() + (days*24*60*60*1000));
        expires = "; expires=" + date.toUTCString();
    }
    document.cookie = name + "=" + (value || "")  + expires + "; path=/";
}
function getCookie(name) {
    var nameEQ = name + "=";
    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,c.length);
        if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
    }
    return null;
}
function eraseCookie(name) {   
    document.cookie = name+'=; Max-Age=-99999999;';  
}

以下是Mozilla支持unicode的删除cookie函数的实现:

function removeItem(sKey, sPath, sDomain) {
    document.cookie = encodeURIComponent(sKey) + 
                  "=; expires=Thu, 01 Jan 1970 00:00:00 GMT" + 
                  (sDomain ? "; domain=" + sDomain : "") + 
                  (sPath ? "; path=" + sPath : "");
}

removeItem("cookieName");

如果你使用AngularJs,试试$cookies。删除(下面使用类似的方法):

$cookies.remove('cookieName');

我们没有在JavaScript中删除cookie的能力,所以要删除它,我们需要创建另一个日期较早的cookie。

集饼干

let expires = null
const cookieName = 'userlogin'
const d = new Date();
d.setTime(d.getTime() + 2 * 24 * 60 * 60 * 1000);
document.cookie = cookieName + "=" + value+ ";" + expires + ";path=/";

删除饼干

let expires = null
const d = new Date();
d.setTime(d.getTime() - 2 * 24 * 60 * 60 * 1000);
expires = "expires=" + d.toUTCString();
document.cookie = 'userlogin' + "=" + value+ ";" + expires + ";path=/";

试试这个:

function delete_cookie( name, path, domain ) {
  if( get_cookie( name ) ) {
    document.cookie = name + "=" +
      ((path) ? ";path="+path:"")+
      ((domain)?";domain="+domain:"") +
      ";expires=Thu, 01 Jan 1970 00:00:01 GMT";
  }
}

你可以这样定义get_cookie():

function get_cookie(name){
    return document.cookie.split(';').some(c => {
        return c.trim().startsWith(name + '=');
    });
}

对于只需要一行代码就可以删除cookie的人:

如果您创建了一个cookie,例如在web浏览器控制台与文档。Cookie = "test=hello"

你可以用以下方法删除它:

document.cookie = "test=;expires=" + new Date(0).toUTCString()

或者,如果您喜欢直接编写UTC日期:

document.cookie = "test=;expires=Thu, 01 Jan 1970 00:00:00 GMT"

如果你在与cookie不同的路径上(例如,如果你想删除一个在所有路径上使用的cookie),你可以添加path=/;后测试=;如果您在不同的域(例如,当cookie通过使用.example.com而不是www.example.com为所有子域设置时),您可以添加domain=.example.com;测试=;之后。

更新:而不是expires=…,使用Max-Age=0像在其他答案也工作(用Firefox测试)。