我正在研究 ajax 脚本,用户可以点击 add_to_cart 按钮在购物车上添加商品。但不幸的是,它增加了单击两次。
//here is my code
$(".add_to.cart").click(function(e){
$(this).shoppingCart("add_item");
});
此脚本单击发送两个 ajax 请求..
如何阻止它?提前感谢您的帮助。
//here is my markup
<tr id='p_<?php echo $products['p_id']; ?>'>
<td class='p-img'><img src='products.php?img=2323' /></td>
<td class='p-name'><?php echo $products['p_name']; ?></td>
<td class='p-price'><?php echo $products['p_price]; ?></td>
<td><a href='javascript:void(0);' class='btn_primary add_to_cart'> Add To Cart</a></td>
</tr>