ページをロードせずにカートアイテムを更新したい、つまりajaxの助けを借りて更新したい。 誰でも私にこのコードを書いたファイルを教えてもらえますか?MAGENTOでAJAXを使用しているカートの項目を更新する
jQuery(document).ready(function(){
jQuery('#shopping-cart-table')
.on(
'change',
'input[name$="[qty]"]',
function(){
var form = jQuery(jQuery(this).closest('form'));
// we'll extract the action and method attributes out of the form
// kick off an ajax request using the form's action and method,
// with the form data as payload
jQuery.ajax({
url: form.attr('action'),
method: form.attr('method'),
data: form.serializeArray()
});
}
);
});
誰でも私を助けることができます.. ???? –