0

根据这个问题,我问并回答了自己... 为按钮集设置 jquery cookie 我可以为单个按钮集设置 cookie,但现在我正在尝试对多个按钮集执行相同的操作。我让它工作的唯一我不知道的是如何选择和刷新按钮集......具有讽刺意味的是,这是我在第一个问题时遇到的问题,但我想出了如何做到这一点,没有这样的运气时间。

$(function(){ 
  var radioButtonSet=$('.setCookies').find('.setupRadioButtons');
  radioButtonSet.buttonset();
  var radio=$('.setupRadioButtons').find(':radio'), radioCookieName='selection';

  radio.each(function(){
    var selected=$.cookie(radioCookieName + '|' + this.name);
    $(this).prop('checked', true).button('refresh')  // CAN'T GET THIS TO WORK
    $(this).click(function() {
      $.cookie(radioCookieName + '|' + this.name, $(this).val(), {expires: 365});    
    });
  });
});
4

1 回答 1

0

好吧,我又一次想通了……

这是工作代码...

$(function(){                                                                                       // Sets cookies for Check boxes
    var radioButtonSet=$('.setCookies').find('.radioButtons');
    radioButtonSet.buttonset();
    var radio=$('.radioButtons').find(':radio');

    radio.each(function(){
        var selected=$.cookie(this.name);
        $('#'+selected).prop('checked', true).button('refresh');

        $(this).click(function() {
            $.cookie(this.name, this.id, {expires: 365});
        });
    });
});
于 2015-06-17T04:19:14.533 回答