1

我有一个刚刚购买的 jQuery 购物车脚本。很棒,但我需要稍微修改一下。

如您所见,在 JS 代码中设置了自定义属性。现在,“minimum”和“price”是自定义属性,但我会添加“gap”属性。所以我需要的是:

1- To be able to set the "quantity gap". By that I mean :
if (custom attribute of the product ul)gap="1"...then when add more of this item, go up by 1 in the shoppping cart

if gap="2"...then go up by 2
if gap="3"...then go up by 3...
and so on. You get the idea.

这是 JSFiddle:http: //jsfiddle.net/dSj5U/

我已经复制了整个 Javascript 部分和 HTML 的一部分。所以不要看 HTML 渲染......它只是让你看看它是如何工作的。

这对我们来说非常重要,因为我们正在使用这个购物车进行一个大项目。如果有人可以提供帮助,我们将不胜感激。

谢谢!

4

1 回答 1

1

我自己找到了。

我添加了“gap”自定义属性,然后添加:

        if(v < settings.productBuyLimit) v += g;

"g" 是 "gap: parseFloat(product.attr('gap'+option))

"v" 是 cart_item.quantity

于 2012-05-30T16:00:17.000 回答