2012-06-25 66 views

回答

1

您需要設置有效期:

$.cookie('XXX', 'the_value', { expires: 22 }); 

Read this article

$.cookie("example", "foo"); 

這是一個設置爲當前路徑的會話cookie級別,並在用戶退出瀏覽器時被銷燬。爲了使相同的Cookie最後持續用於例如7天做到這一點:

$.cookie("example", "foo", { expires: 7 }); 
+0

非常感謝。我很確定這是我明天會試試這個) –

+0

我還是得到這個代碼爲null:/ 即使只是這個「\t $ .cookie(」example「,」foo「); \t alert($。cookie '例'));」爲空 –

+0

@Jerome。你可以請一個http://jsfiddle.net? – gdoron