我尝试使用以下行显示simpleCart购物车显示名称,价格和数量
<a class="item_add" href="javascript:;"> Add to Cart </a></p>
在simplecart.js下载中包含的文档和示例索引文件中给出。那没有显示项目名称。
索引文件还包括备选配方:
<a href="javascript:;" onclick="simpleCart.add({name:'baby lion', price: 34.95,size:'tiny',thumb:'e.png'});" >add to cart</a>
其中添加了名称,价格但数量错误。直接(即quantity: Quantity
)或通过getElementById方法(即quantity: document.getElementById("item_Quantity").value
)添加数量属性会导致错误。
我的购物车栏目设置如下:
simpleCart({
cartColumns: [
{ attr: "name" , label: "Item"},
{ attr: "price" , label: "Price", view: 'currency' } ,
{ view: "decrement" , label: false , text: "-" } ,
{ attr: "quantity" , label: "Qty" } ,
{ view: "increment" , label: false , text: "+" } ,
{ attr: "total" , label: "SubTotal", view: 'currency' } ,
{ view: "remove" , text: "Remove" , label: false }
]
});
如何显示姓名和数量?
答案 0 :(得分:0)
想出答案,我没有将每个项目列为
<li class="simpleCart_shelfItem">
相当愚蠢的错误,但是当推车中显示其他属性时,它让我失望了。它现在有效。