我想用jQuery的json創建一個cookie數組。這是迄今爲止工作的腳本,除了數組部分。有人可以告訴我怎麼可以這樣做一個數組...創建Json Cookie數組?
<script type="text/javascript">
//The database value will go here...
var cookievalue= {'tid1':'ticvalue1','thid1':'thidvalue1','tid2':'ticvalue2','thid2':'thidvalue2'};
//Create a cookie and have it expire in 1 day.
$.cookie('cookietest', cookievalue, { expires: 1 });
//Write the value of the cookie...
document.write($.cookie('cookietest'));
</script>
我遇到的問題是,當我的數組傳遞給它的存儲[object object]
而非陣列值的cookie。因此,如果我循環訪問數據,那麼我將使用多個Cookie而不是一個Cookie,並將數組值存儲在
,我認爲他們稱之爲什麼,我要做的是關聯數組。有點像這裏發生的事情,但行格式多行數據:http://www.electrictoolbox.com/loop-key-value-pairs-associative-array-javascript/ – 2012-08-13 09:13:52