Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

จะล้างคุกกี้ทั้งหมดด้วย JavaScript ได้อย่างไร


หากต้องการล้างคุกกี้ทั้งหมดด้วย JavaScript ให้ตั้งค่าวันหมดอายุเป็นเวลาในอดีต

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อล้างคุกกี้ทั้งหมด −

<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>