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, hãy đặt ngày hết hạn thành một thời điểm trong quá khứ.

Ví dụ

Bạn có thể thử chạy mã sau để xóa tất cả cookie -

<html>
   <head>
      <script>
         <!--
            function WriteCookie() {
               var now = new Date();
               now.setMonth( now.getMonth() - 1 );
               cookievalue = escape(document.myform.customer.value) + ";"

               document.cookie="name=" + cookievalue;
               document.cookie = "expires=" + now.toUTCString() + ";"
               document.write("Setting Cookies : " + "name=" + cookievalue );
            }
         //-->
      </script>
   </head>
   <body>
      <form name="myform" action="">
         Enter name: <input type="text" name="customer"/>
         <input type="button" value="Set Cookie" onclick="WriteCookie()"/>
      </form>
   </body>
</html>