我正在尝试使用 jquery 的 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>
我遇到的问题是当我将数组传递给它存储的 cookie[object object]
而不是数组值时。因此,如果我遍历数据,那么我将使用多个 cookie 而不是一个 cookie,其中的数组值存储在