我刚买了一个jQuery Shopping Cart脚本。 这很棒,但我需要稍微修改一下。
如您所见,JS代码中设置了自定义属性。 现在,“最小”和“价格”是自定义属性,但我会添加“间隙”属性。 所以我需要的是:
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渲染......它只是为了让你看看它是如何工作的。
这对我们来说非常重要,因为我们正在使用这个购物车开展一个大项目。如果有人可以提供帮助,我们将非常感激。
谢谢!
答案 0 :(得分:1)
我自己找到了。
我添加了“gap”自定义属性,然后添加了:
if(v < settings.productBuyLimit) v += g;
“g”是“gap:parseFloat(product.attr('gap'+ option))
“v”是cart_item.quantity