我这样做了:
$.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});