如何在 JavaScript 中设置命名 cookie?


要在 JavaScript 中设置命名 cookie,请运行以下代码。它在输入 cookie 中设置客户名称。

示例

实际操作的演示

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

更新于: 03-Oct-2019

500 次观看

开启你的 职业生涯

获得认证,完成课程

开始
提示