cookies读出问题
<Script>var today = new Date();
var expireDay = new Date();
var msPerMonth = 24*60*60*1000*31;
expireDay.setTime( today.getTime() + msPerMonth );
document.cookie = "name=Hubert;expires=" + expireDay.toGMTString();
document.write("已经将 Cookie 写入你的硬盘中了!<br>");
document.write("内容是:", document.cookie, "<br>");
document.write("这个 Cookie 的有效时间是:");
document.write(expireDay.toGMTString());
</Script>
运行结果
已经将 Cookie 写入你的硬盘中了!
内容是:name=Hubert; NAME=HUBERT; ASPSESSIONIDCATQTTQD=CCJFELBABNCKFJLPALPFHGHN
这个 Cookie 的有效时间是:Fri, 25 Jul 2008 00:29:42 UTC
问一下
内容后的值怎么产生的啊
想不明白