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

您可以在 simplecartjs 脚本的 V3 中尝试这种方式,

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 回答