gpt4 book ai didi

javascript - 增量变量超过 1?

转载 作者:可可西里 更新时间:2023-11-01 02:49:32 25 4
gpt4 key购买 nike

这是我的脚本:

function itemQuantityHandler(operation, cart_item) {
var v = cart_item.quantity;

//add one
if (operation === 'add' && v < settings.productBuyLimit) {
v++;
}

//substract one
if (operation === 'subtract' && v > 1) {
v--;
}

//update quantity in shopping cart
$('.item-quantity').text(v);

//save new quantity to cart
cart_item.quantity = v;
}

我需要的是将 v (cart_item.quantity) 增加一个以上。在这里,它使用的是 v++,但它只增加了 1。我如何更改它以使其每次单击加号图标时增加 4?

我试过了

v++ +4

但它不起作用。

最佳答案

使用复合赋值运算符:

v += 4;

关于javascript - 增量变量超过 1?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10642671/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com