我已设置了document.cookie
的Cookie。 Google Chrome中的内容设置显示了Cookie。但是,document.cookie
在打印时显示为空白字符串。为什么会这样?
这是我的代码
function setCookie(name,value,lifeTime,path,domain,secure){//lifetime in hours
{
var c_ = name +'='+escape(value)+'; ';
var life = new Date();
lifeTime<1&&lifeTime>0?life.setMinutes(life.getMinutes()+lifeTime*60):life.setHours(life.getHours()+lifeTime);
life = life.toUTCString();
c_+='expires='+life+"; ";
c_+= 'domain='+domain+'; ';
c_ += 'secure=secure; ';//secure
c_ += 'path='+path;
document.cookie = c_;
alert(document.cookie);
/*Just splitted the code instead of c = 'name='+value+'expires ='+life etc*/
}
答案 0 :(得分:4)
此功能可能存在的问题是,始终设置安全Cookie 。因此,如果您使用HTTP而不是 HTTPS 协议请求/打开了该页面,则不会公开安全cookie。