在预先选择的单选按钮上更新Magento篮子

时间:2016-04-13 00:14:00

标签: javascript jquery magento

我在Magento网站的结帐时有两个交付选项。默认情况下,我选择了免费送货。我正在使用此代码:

(function($) {
  $('#checkout-shipping-method-load .input-checkout-radio .method-title:contains(Take it to my room)', function() {
    $("#s_method_premium").prop("checked", true);
    if (!window.location.hash) {
      window.location = window.location + '#loaded';
      window.location.reload();
    }
  });

})(jQuery);

选择付费送货。我在这里面临的问题是如何更新篮子值以反映39磅的费用?

0 个答案:

没有答案