Simplecart.js检查Simplecart_Items是否有项目

时间:2013-02-27 16:00:04

标签: javascript shop simplecart

是否可以检查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
}

有办法吗?

1 个答案:

答案 0 :(得分: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;
  }
});