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. }); });