8

我正在使用 jquery-cookie 库来创建带有 JQuery 的 cookie。如何更新 cookie 的值?我需要它创建新的 cookie,如果 cookie 存在来更新它。我怎样才能做到这一点?我得到的代码:

v.on('click', function(){
      var d = $(this).attr('role');       
      if(d == 'yes')
          {
           glas = 'koristan.'   
          }else {
              glas = 'nekoristan.'
          };
       text = 'Ovaj komentar vam je bio ' + glas;

       //This part here create cookie
       if(id_u == 0){
           $.cookie('010', id + '-' + d);
       }        
      $.post('<?php echo base_url() ?>rating/rat_counter', {id : id, vote : d, id_u : id_u}, function(){
         c.fadeOut('fast').empty().append('<p>' + text).hide().fadeIn('fast'); 
      });
    })
4

2 回答 2

12

要更新 cookie,您只需创建一个具有相同名称和不同值的 cookie。

编辑

要将新值附加到旧值...

//Im not familiar with this library but 
//I assume this syntax gets the cookie value.
var oldCookieValue = $.cookie('010');  
//Create new cookie with same name and concatenate the old and new desired value.
$.cookie('010', oldCookieValue + "-" + id);
于 2012-08-10T13:33:35.620 回答
1

注意这个链接

http://www.electrictoolbox.com/jquery-cookies/

在这里,您可以看到您可以使用 cookie 做的所有重要事情。

如果你想知道一个 cookie 是否已经存在,就用这个

if($.cookie("example") != null)
{
    //cookie already exists
}
于 2012-08-10T13:36:12.357 回答