如何使用 JavaScript 创建基于域的 Cookie?


若要创建基于域的 cookie,请在 cookie 中设置域和路径属性,如下所示 −

domain=.example.com

示例

您可以尝试运行以下代码来了解如何创建基于域的 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 + ";
               domain=.example.com;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>

更新于: 2020 年 6 月 16 日

239 次浏览

开启你的 职业生涯

完成课程以获得认证

开始学习
广告
© . All rights reserved.