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

Làm cách nào để đặt cookie được đặt tên trong JavaScript?


Để đặt cookie được đặt tên trong JavaScript, hãy chạy đoạn mã sau. Nó đặt tên khách hàng trong cookie đầu vào.

Ví dụ

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