JS cookie 在几分钟而不是几天后过期

JS cookie expires in mins not days

这是我所拥有的我需要我的 cookie 在大约 5 分钟后过期我该怎么做与现在我将其设置为 30 天

av_setCookie = function(e) {
e.preventDefault();

var is_legal = $(e.currentTarget).attr('rel');

$.cookie('is_legal', is_legal, {
    expires: 30,
    path: '/'
});

if (is_legal == "yes") {
    av_closeModal();
    $(window).off('resize');
} else {
    av_showRegret();
}

};

您可以使用日期对象作为参数:

$.cookie('is_legal', is_legal, {
    expires: new Date().setTime(new Date().getTime() + 1000 * 60 * 5),
    path: '/'
});