如何更新购物车数量

时间:2012-07-17 03:04:44

标签: php database shopping-cart

我正在制作购物车,我附上了这张照片

enter image description here

产品的总和取决于买方 我的问题是如何按更新按钮更新产品的所有数量?

1 个答案:

答案 0 :(得分:0)

您将需要使用Javascript来更新表单本身。

$(document).ready( function() { 
    $(".update_button").click( function() {
        //update the quantities here.
    });
});
相关问题