Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> 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>