Clearing all cookies with JavaScript

后端 未结 18 1215
别那么骄傲
别那么骄傲 2020-11-22 05:55

How do you delete all the cookies for the current domain using JavaScript?

18条回答
  •  野性不改
    2020-11-22 06:18

    Functional Approach + ES6

    const cookieCleaner = () => {
      return document.cookie.split(";").reduce(function (acc, cookie) {
        const eqPos = cookie.indexOf("=");
        const cleanCookie = `${cookie.substr(0, eqPos)}=;expires=Thu, 01 Jan 1970 00:00:00 GMT;`;
        return `${acc}${cleanCookie}`;
      }, "");
    }
    

    Note: Doesn't handle paths

提交回复
热议问题