Computer >> Máy Tính >  >> Lập trình >> Javascript

Làm cách nào để sử dụng JavaScript để đặt cookie cho nhiều trang?


Để đặt cookie cho nhiều trang, bạn cần đặt đường dẫn là -

;path=/

Ví dụ

Ở trên sẽ làm cho cookie của bạn đến cookie của trang web. Bạn có thể thử chạy mã sau để đặt cookie cho nhiều trang -

Bản trình diễn trực tiếp

<html>
   <head>
      <script>
         <!--
            function WriteCookie() {
               if( document.myform.customer.value == "" ) {
                  alert("Enter some value!");
                  return;
               }
               cookievalue = escape(document.myform.customer.value) + ";";
               document.cookie = "name=" + cookievalue + "; path=/";
               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>