這裏是我的腳本:Javascript增量超過1?
//event handler for item quantity in shopping cart
function itemQuantityHandler(p, a) {
//get current quantity from cart
var filter = /(\w+)::(\w+)/.exec(p.id);
var cart_item = cart[filter[1]][filter[2]];
var v = cart_item.quantity;
//add one
if (a.indexOf('add') != -1) {
if(v < settings.productBuyLimit) v++;
}
//substract one
if (a.indexOf('subtract') != -1) {
if (v > 1) v--;
}
//update quantity in shopping cart
$(p).find('.item-quantity').text(v);
//save new quantity to cart
cart_item.quantity = v;
//update price for item
$(p).find('.item-price').text((cart_item.price*v).toFixed(settings.numberPrecision));
//update total counters
countCartTotal();
}
我需要的是一個以上的增加 「V」(cart_item.quantity)。在這裏,它使用「v ++」...但它只會增加1.我怎樣才能改變這一點,使其每次點擊加號圖標時增加4?
我試圖
v++ +4
但它不工作。
謝謝!
'v + = 4' ...?還有一些填充... –
如果你不知道如何將4添加到數字中,我真的會建議通過基本的編程教程來運行。 –