我正在购物网站上工作,想检查购物车中是否有商品。如果存在,请提醒已经在购物车中并返回$("#showBtn").focus();
msgBoxImagePath = "http://www.ournestonline.com/assets/images/";
function showMsgBox() {
simpleCart.bind('beforeAdd', function (item) {
if (simpleCart.has(item)) {
alert("Already in the Cart");
$.msgBox({
title: "Shopping Cart",
content: "Already in cart",
type: "alert"
});
return false;
} else {
$.msgBox({
title: "Shopping Cart",
content: "Great Selection Your Item is Added to Cart Happy Shopping",
type: "alert"
});
}
});
}
。如果它不存在,请将其添加到购物车。
我尝试过如下,代码工作正常,但警报正在循环播放。
{{1}}
答案 0 :(得分:0)
尝试添加
return false;
在。