Javascript Cookie
什么是Cookie?
Web 浏览器和服务器使用 HTTP 协议进行通信,HTTP 是一种无状态协议。但是对于商业网站,需要维护不同页面之间的会话信息。例如,一个用户注册完成很多页后就结束了。但是如何在所有网页上维护用户的会话信息呢。这里就可以用到Cookie了。
工作原理
服务器以 cookie 的形式向访问者的浏览器发送一些数据。浏览器会接受这些 cookie(如果访问者没有将浏览器的cookie禁用掉的话),然后将其作为纯文本记录存储在访问者的硬盘驱动器上。现在,当访问者访问网站上的另一个页面时,浏览器会将相同的 cookie 发送到服务器进行检索。一旦检索到,服务器就会知道/记住之前存储的内容。
Cookie 是 5 个可变长度字段的纯文本数据记录
- Expires - cookie 过期的日期。如果此项为空,cookie 将在访问者退出浏览器时过期。
- 域- 您网站的域名。
- 路径- 设置 cookie 的目录或网页的路径。如果你想从任何目录或页面检索 cookie,可将该字段设为空。
- 安全- 如果此字段包含“secure”一词,则只能使用安全服务器检索 cookie。如果此字段为空,则不存在此类限制。
- Name=Value - 以键值对的形式设置和检索 Cookie
Cookie 最初是为 CGI 编程而设计的。cookie 中包含的数据会在 Web 浏览器和 Web 服务器之间自动传输,因此服务器上的 CGI 脚本可以读取和写入存储在客户端上的 cookie 值。
JavaScript 还可以使用Document对象的cookie属性来操作 cookie 。JavaScript 可以读取、创建、修改和删除适用于当前网页的 cookie。
存储 Cookie
创建 cookie 的最简单方法是为 document.cookie 对象分配一个字符串值,如下所示。
document.cookie = "key1 = value1;key2 = value2;expires = date";
这里的expires属性是可选的。如果为该属性提供有效的日期或时间,则 cookie 将在给定的日期或时间到期,此后将无法访问 cookie 的值。
注意- Cookie 值可能不包括分号、逗号或空格。出于这个原因,您可能希望在将值存储到 cookie 之前使用 JavaScript escape()函数对值进行编码。如果这样做,则在读取 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;
alert ("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>
输出结果如下:
读取 Cookie
读取 cookie 和编写 cookie 一样简单,因为 document.cookie 对象的值就是 cookie。因此,只要您想访问 cookie,就可以使用此字符串。document.cookie 字符串将保留一个由分号分隔的 name=value 对列表,其中name是 cookie 的名称,value 是其字符串值。
你可以使用字符串的split()函数将字符串分解为键和值,如下所示
示例
<html>
<head>
<script type = "text/javascript">
<!--
function ReadCookie() {
var allcookies = document.cookie;
document.write ("All Cookies : " + allcookies );
// Get all the cookies pairs in an array
cookiearray = allcookies.split(';');
// Now take key value pair out of this array
for(var i=0; i<cookiearray.length; i++) {
name = cookiearray[i].split('=')[0];
value = cookiearray[i].split('=')[1];
alert ("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>
输出结果如下:
注意- 这里length是Array类的一种方法,它返回数组的长度。我们将在单独的章节中讨论数组。
设置 Cookie 到期日期
您可以通过设置到期日期并将到期日期保存在 cookie 中,从而将 cookie 的生命周期延长到当前浏览器会话之外。这可以通过将'expires'属性设置为日期和时间来完成。
示例
试试下面的例子。它说明了如何将 cookie 的到期日期延长 1 个月。
<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() + ";"
alert ("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>
删除 Cookie
有时您会想要删除 cookie,以便后续尝试读取 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() + ";"
alert("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>