數量選擇器 1 2 3 <button type="button" class="reduce">-</button> <span>0</span> <button type="button" class="add">+</button> 1 2 3 4 5 6 7 8 9 10 11 12 13 14 //數量初始值 let num = 0; $(".reduce").click(function(){ //每次點擊數量-1,num = num - 1; num-=1; $("span").text(num); }); $(".add").click(function(){ //每次點擊數量+1,num = num + 1; num+=1; $("span").text(num); }); jquery 其他相關 【jQuery】加入聲音效果 【jQuery】用JS+CSS實作常用元件 【jQuery】實作滾動頁面頁籤變換 【jQuery】實作點擊錨點滑動至該區塊 【jQuery】判斷式