私は simpleCart(js) を試していますが、私のカートではすべての項目属性がまとめられています。どうすればそれらを離すことができますか?
これは私の初期化スクリプトです
<script>
simpleCart({
currency: "GBP",
checkout: {
type: "PayPal",
email: "you@yours.com"
},
cartColumns: [
{ attr: "name", label: "Name" } ,
{ attr: "price" , label: "Price", view: 'currency' } ,
{ attr: "quantity" , label: "Qty" } ,
{ attr: "total" , label: "SubTotal", view: 'currency' } ,
{ view: "remove" , text: "Remove Item" , label: false }
],
cartStyle : "table"
});
</script>
これは私のカートビューです
<div class="cart">
<div class="simpleCart_items"> </div>',
<span class="simpleCart_quantity"></span> items - <span class="simpleCart_total">
</span>
<a href="javascript:;" class="simpleCart_checkout">Checkout </a>
<a href="javascript:;" class="simpleCart_empty"> Empty Basket</a>
</div>
</div>
誰でも私を助けることができますか?