我在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磅的费用?