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

วิธีการใช้ JavaScript เพื่อตั้งค่าคุกกี้สำหรับหน้าแรกเท่านั้น?


หากต้องการตั้งค่าคุกกี้สำหรับโฮมเพจ ให้เพิ่มเพจนั้นไปที่โฮมเพจเอง

ตัวอย่าง

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

การสาธิตสด

<html>
   <head>
      <script>
         <!--
            function WriteCookie() {
               if( document.myform.customer.value == "" ){
                  alert("Enter some value!");
                  return;
               }
               cookievalue= escape(document.myform.customer.value) + ";";

               var myPath = window.location.pathname;
               var address = query.split("/");

               if ((address[address.length - 1]).toLowerCase() == "home.html") {
                  document.cookie = "name=" + cookievalue;
                  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>