5
多くの人が私に同じ質問をしてくれたら恩恵を受けます。サムネイル画像を表示するにはsimpleCart jsサムネイル画像が定義されていません
項目の設定:
<div class="simpleCart_shelfItem">
<img src="images/buttons.png" alt="Sample Product" class="item_thumb" thumb="images/buttonsthumb.png">
<h2 class="item_name"> Awesome T-shirt </h2>
<p> <input type="text" value="1" class="item_Quantity"><br>
<span class="item_price">$35.99</span><br>
<a class="item_add" href="javascript:;"> Add to Cart </a></p>
</div>
注:画像は、クラスitem_thumbと値がサムネイル画像のURLです属性親指を持っています。
カートのセットアップ:
simpleCart({
cartColumns: [
{ view: "image" , attr: "thumb", label: false },
{ attr: "name" , label: "Name" } ,
{ 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 }
]
});