我创建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=/";

其他回答

对于只需要一行代码就可以删除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测试)。

我曾经从后端生成cookie并重定向到前端。我得到它工作的唯一方法是设置过期日期在过去的背和重定向回到前端

我在我的网站上使用这个在Chrome和Firefox上工作。

function delete_cookie(name) { document.cookie = name +'=; Path=/;  Domain=' + location.host +  '; Expires=Thu, 01 Jan 1970 00:00:01 GMT; SameSite=None; Secure' }

以下是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');

试试这个:

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 + '=');
    });
}