1

我想在单击单选按钮时刷新我的 jsp 页面,而不刷新单击单选按钮。

4

1 回答 1

2

如果您的意思是要刷新页面并在刷新后单击相同的单选按钮,则必须恢复它:

$(function(){
    // restoration :
    var clicked = localStorage['clicked'];
    if (clicked) $('input:radio[name="'+clicked'"]').attr('checked',true);

   // save and refresh :
   $('input:radio').click(function(){
       localStorage['clicked'] = this.name;
       location.reload();
   }
});
于 2012-10-11T09:07:27.930 回答