如何在午夜使用Jquery使Cookie过期?

前端之家收集整理的这篇文章主要介绍了如何在午夜使用Jquery使Cookie过期?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我这样做了:
$.cookie("ultOS",(i),{expires:1});

但它只会在第二天到期.

我怎样才能在午夜过期?

这会改变吗?

var date = new Date();
var midnight = new Date(date.getFullYear(),date.getMonth(),date.getDate(),23,59,59);
$.cookie("ultOS",{expires: midnight});

解决方法

我认为这会奏效:
var currentDate = new Date();
expirationDate = new Date(currentDate.getFullYear(),currentDate.getMonth(),currentDate.getDate()+1,0);
$.cookie("ultOS","5",{expires: expirationDate});
原文链接:https://www.f2er.com/jquery/178770.html

猜你在找的jQuery相关文章