Cookie没有显示在Firefox的开发者控制台中

时间:2017-02-22 13:11:28

标签: javascript firefox cookies

我使用的是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没有显示出来:

enter image description here

如果我在控制台中写document.cookie。然后它出现在控制台中,所以它存在。

它完全适用于chrome。

0 个答案:

没有答案