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>
私が抱えている問題は[object object]
、配列値の代わりに配列を保存しているクッキーに渡すときです。したがって、データをループすると、配列値が格納された 1 つの Cookie ではなく、複数の Cookie が作成されます。