我使用的是Firefox ESR 45.7.0。 我正在设置一个cookie,它会在1小时后到期:
var now = new Date();
var time = now.getTime();
time += 3600 * 1000;
now.setTime(time);
document.cookie =
'myFavoriteCookie=bestValue' +
';expires=' + now.toUTCString() +
';path=/';
但是在我设置之后cookie没有显示出来:
如果我在控制台中写document.cookie
。然后它出现在控制台中,所以它存在。
它完全适用于chrome。