Computer >> Máy Tính >  >> Lập trình >> Javascript

Làm cách nào để xóa tất cả cookie bằng JavaScript?


Để xóa tất cả cookie bằng JavaScript, bạn có thể thử chạy đoạn mã sau. Ở đây, chúng tôi đang sử dụng một mảng và phương thức split () để lấy tất cả cookie và cuối cùng xóa chúng

Ví dụ

Bản trình diễn trực tiếp

<!DOCTYPE html>
<html>
   <head>
      <script>
         var num = 1;
         function addCookie(){
            document.cookie = num+" = "+num;
            num++;
         }
         function listCookies(){
            var result = document.cookie;
            document.getElementById("list").innerHTML = result;
         }
         function removeCookies() {
            var res = document.cookie;
            var multiple = res.split(";");
            for(var i = 0; i < multiple.length; i++) {
               var key = multiple[i].split("=");
               document.cookie = key[0]+" =; expires = Thu, 01 Jan 1970 00:00:00 UTC";
            }
         }
      </script>
   </head>
   <body>
      <button onclick = 'addCookie()'>ADD</button><br>
      <button onclick = 'listCookies()'>LIST COOKIES</button><br>
      <button onclick = 'removeCookies()'>REMOVE</button>
      <h1>Cookies List</h1>
      <p id = "list"></p>
   </body>
</html>