Web浏览器和服务器使用HTTP协议进行通信,HTTP是一种无状态协议。但是对于商业网站来说,需要在不同的页面之间维护会话信息。在许多情况下,使用cookie是记忆和跟踪偏好、购买、佣金和其他更好的访问者体验或网站统计所需信息的最有效方法。本文主要介绍JavaScript(JS) cookie介绍及使用。

1、cookie介绍

服务器以cookie的形式向访问者的浏览器发送一些数据。如果浏览器可以接受cookie。它将以纯文本记录的形式存储在访问者的硬盘驱动器上。现在,当访问者到达站点上的另一个页面时,浏览器将同样的cookie发送给服务器进行接收。一旦被接收,服务器就知道/记住先前存储的内容。

cookie是5个可变长字段的纯文本数据记录:

Expires:过期的时间。如果这是空的,cookie将在访问者退出浏览器时过期。
Domain:站点的域名。
Path:示允许访问的cookie路径,只有在此路径下才可以读写cookie,一般情况下将path设为“/”,表示同一站点下的所有页面都可以访问cookie
Secure:如果该字段包含单词“secure”,那么cookie只能通过安全服务器检索。如果该字段为空,则不存在此类限制。
Name=Value:cookie以键值对的形式设置和读取

cookie最初是为CGI编程而设计的。包含在cookie中的数据在web浏览器和web服务器之间自动传输,因此服务器上的CGI脚本可以读写存储在客户端上的cookie值。JavaScript还可以使用Document对象的cookie属性来操作cookie。JavaScript可以读取、创建、修改和删除应用于当前网页的cookie。

2、创建保存cookie

创建cookie最简单的方法是将字符串值赋给document.cookie对象。

例如,

document.cookie = "key1 = value1;key2 = value2;expires = date";

expires属性是可选的。如果为这个属性提供一个有效的日期或时间,那么cookie将在给定的日期或时间过期,此后,cookie的值将不可访问。

注意:cookie值不能包含分号、逗号和空格。出于这个原因,可能希望使用JavaScript escape()函数在将值存储到cookie之前对其进行编码。如果这样做,在读取cookie值时还必须使用相应的unescape()函数。

例如,

<html>
   <head>   
      <script type = "text/javascript">
            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 = "">
         Cookie: <input type = "text" name = "customer"/>
         <input type = "button" value = "保存Cookie" onclick = "WriteCookie();"/>
      </form>   
   </body>
</html>

3、读取存储的cookie

读取cookie和编写cookie一样简单,因为document.cookie对象是cookie。所以可以在任何想访问cookie的时候使用这个字符串。该document.cookie字符串将保留一个由分号分隔的name=value对列表,其中name是Cookie的名称,value是它的字符串值。

例如,

<html>
   <head>   
      <script type = "text/javascript">
            function ReadCookie() {
               var allcookies = document.cookie;
               document.write ("All Cookies : " + allcookies );
               // 获取数组中的所有cookie对
               cookiearray = allcookies.split(';');
               // 现在从这个数组中取出键值对
               for(var i=0; i<cookiearray.length; i++) {
                  name = cookiearray[i].split('=')[0];
                  value = cookiearray[i].split('=')[1];
                  document.write ("Key is : " + name + " and Value is : " + value);
               }
            }
      </script>      
   </head>
   <body>     
      <form name = "myform" action = "">
         <p> click the following button and see the result:</p>
         <input type = "button" value = "Get Cookie" onclick = "ReadCookie()"/>
      </form>      
   </body>
</html>

注意:这里lengthArray类的一个方法,它返回数组的长度。机器上可能已经设置了其他一些cookie。上面的代码将显示您机器上设置的所有cookie。

4、设置cookie有效期

可以通过设置过期日期并将过期日期保存在cookie中来延长cookie的生命周期。这可以通过将'expires'属性设置为日期和时间来实现。

例如,

<html>
   <head>   
      <script type = "text/javascript">
            function WriteCookie() {
               var now = new Date();
               now.setMonth( now.getMonth() + 1 );
               cookievalue = escape(document.myform.customer.value) + ";"
               document.cookie = "name=" + cookievalue;
               document.cookie = "expires=" + now.toUTCString() + ";"
               document.write ("Setting Cookies : " + "name=" + cookievalue );
            }
      </script>      
   </head>
   <body>
      <form name = "myform" action = "">
         cookie: <input type = "text" name = "customer"/>
         <input type = "button" value = "保存 Cookie" onclick = "WriteCookie()"/>
      </form>      
   </body>
</html>

5、删除cookie

想要删除一个cookie,以便后续读取cookie的尝试不会返回任何内容。为此,只需要将过期日期设置为过去的某个时间。

例如,

<html>
   <head>   
      <script type = "text/javascript">
            function WriteCookie() {
               var now = new Date();
               now.setMonth( now.getMonth() - 1 );
               cookievalue = escape(document.myform.customer.value) + ";"
               document.cookie = "name=" + cookievalue;
               document.cookie = "expires=" + now.toUTCString() + ";"
               document.write("Setting Cookies : " + "name=" + cookievalue );
            }
      </script>      
   </head>
   <body>
      <form name = "myform" action = "">
         cookie: <input type = "text" name = "customer"/>
         <input type = "button" value = "保存 Cookie" onclick = "WriteCookie()"/>
      </form>      
   </body>
</html>

推荐文档