是否可以添加一个函数来刷新此代码的页面


Is it possible to add a function to refresh the page for this code?

我想为prestshop中的" add to basket"添加刷新页面功能。这是可能的(代码从ajax-card.js文件)?

    overrideButtonsInThePage : function(){
      //for every 'add' buttons...
      $('.ajax_add_to_cart_button').unbind('click').click(function(){
         var idProduct =  $(this).attr('rel').replace('nofollow', '').replace('ajax_id_product_', '');
         if ($(this).attr('disabled') != 'disabled')
            ajaxCart.add(idProduct, null, false, this);
         return false;
      });
      //for product page 'add' button...
      $('#add_to_cart input').unbind('click').click(function(){
         ajaxCart.add( $('#product_page_product_id').val(), $('#idCombination').val(), true, null, $('#quantity_wanted').val(), null);
         return false;
      });
$('.refresh-button').click(Function(){
     location.reload();
})