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

จะกำหนดวันหมดอายุของคุกกี้ใน JavaScript ได้อย่างไร?


ขยายอายุของคุกกี้เกินกว่าเซสชันของเบราว์เซอร์ปัจจุบันโดยการตั้งค่าวันหมดอายุและบันทึกวันหมดอายุภายในคุกกี้ ซึ่งสามารถทำได้โดยการตั้งค่าแอตทริบิวต์ "หมดอายุ" เป็นวันที่และเวลา

ตัวอย่าง

คุณสามารถลองใช้ตัวอย่างต่อไปนี้เพื่อกำหนดวันหมดอายุของคุกกี้ได้ 1 เดือน -

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