使用jquery动态设置Cookie变量

时间:2016-06-17 09:27:11

标签: php jquery cookies

我的页面中有唯一的ID,我想为所有ID创建Cookie,我不知道如何处理这个问题,我已经使用jquery定义了cookie,我的代码如下所示:

    <script type="text/javascript>
      $.each(event_detail, function(index, element)
           {

                        if(index == "type")
                        {

                          var newactivity = element;
                          var task_id = event_detail.data.bug_id;
                          var project_id = event_detail.data.project_id;
                          $.cookie('task_id', task_id );
                        }
           }



        </script>

我的代码工作正常,但它只在cookie变量中存储了一个值,但我不知道如何为所有任务ID和此ID创建一个cookie需要设置我的网页值。

0 个答案:

没有答案