0

このように、divクラスのsimplecart_itemsにアイテムが含まれているかどうかを確認することはできますか?

if simplecart_items == 0 {
NO ITEMS IN THE CARD // Shows no add to card, no total coast and no products quantity
}
else {
The "normal" output // Shows add to card, total coasts and products
}

方法はありますか?

4

1 に答える 1

1

V3 の simplecartjs スクリプトでこの方法を試すことができます。

if(simpleCart.items().length == 0)
{
//No items in the cart
}

カートにすでに入っている特定の商品を確認したい場合は、jQuery を使用します。

simpleCart.bind('beforeAdd', function (item) {
  if (simpleCart.has(item)) 
  {
      alert("Already in the Cart");
      return false;
  }
});
于 2013-07-05T06:49:53.603 に答える