1

我在 JavaScript 中设置了一个 cookie(使用 ASP.NET 应用程序)。我可以刷新页面,并且可以验证 cookie 是否设置为document.cookie. 现在,如果我转到任何其他页面,则未设置 cookie,但应该设置。我没有设置路径,所以我看不出它没有出现的任何原因。我已经尝试过 Chrome、FF 和 IE,但什么都没有。

有什么想法我可能做错了吗?

更新:

这是我用来设置 cookie 的代码。我也试过 jquery.cookie

function Set_Cookie(name, value, expires, path, domain, secure) {
    // set time, it's in milliseconds
    var today = new Date();
    today.setTime(today.getTime());

    /*
    if the expires variable is set, make the correct
    expires time, the current script below will set
    it for x number of days, to make it for hours,
    delete * 24, for minutes, delete * 60 * 24
    */
    if (expires) {
        expires = expires * 1000 * 60 * 60 * 24;
    }
    var expires_date = new Date(today.getTime() + (expires));

    document.cookie = name + "=" + escape(value) +
        ((expires) ? ";expires=" + expires_date.toGMTString() : "") +
        ((path) ? ";path=" + path : "") +
        ((domain) ? ";domain=" + domain : "") +
        ((secure) ? ";secure" : "");
}

Set_Cookie('cookie1', 'value1', 14);
$.cookie('cookie2', 'value2');
4

1 回答 1

0

我将路径设置为“/”。我拒绝这样做,因为它听起来很愚蠢。默认情况下应该是这样的,对吧?我猜不是。

于 2013-09-06T23:24:53.430 回答