Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在制作购物车,附上这张照片
产品的总和取决于买家我的问题是如何按更新按钮来更新产品的所有数量?
您将需要使用 Javascript 来更新表单本身。
$(document).ready( function() { $(".update_button").click( function() { //update the quantities here. }); });