我正在使用 jQuery cookie 设置 3 个值说x
,y
并且z
我想z
在 365 天后过期x
,但不会过期y
。
$.cookie("MyTestCookie", xyz, { expires: 999999 });
我使用以下方法拆分了值:
var xVal = my_cookie_value.substring(0);
var yVal = my_cookie_value.substring(1);
var zVal = my_cookie_value.substring(2);
$.cookie("MyTestCookie", zVal, { expires: 365 });
提前谢谢你