在我的网站上,我正在使用"使用jquery ajax调用动态添加到购物车" -button来加载购物产品。对于购物车本身,我使用jcart,jquery插件。
当我将一个项目添加到购物车时,jcart使用ajax和POST调用一个php文件。一切正常,产品已正确添加到购物车,但每次我将商品添加到购物车时页面都会重新加载。 当我没有使用ajax调用来加载产品时(例如直接在页面中加载它们),一切正常,所以某处肯定存在冲突。 有线索吗?
这是我的产品功能和html。
...
<script>
function loadProducts(str) {
$.ajax({
type: 'GET',
async: true,
url: 'ajax/load.php',
data: {'max-id' : str},
cache: false,
success: function(response) {
$('#products').html(response).fadeIn('slow');
},
});
}
</script>
<script>
$(document).ready(function() {
var n = '';
loadProducts(n);
});
</script>
<script src="jcart/js/jcart.js"></script>
</body>
</html>
jcart-Plugin及其ajax调用可以在这里找到: http://conceptlogic.com/jcart/standalone-demo/jcart/js/jcart.js
以下是jcart.js的功能。
$.ajaxSetup({
type: 'POST',
url: path + '/relay.php',
cache: false,
success: function(response) {
// Refresh the cart display after a successful Ajax request
container.html(response);
$('#jcart-buttons').remove();
},
error: function(x, e) {
...
}
});
...
function add(form) {
// Input values for use in Ajax post
var itemQty = form.find('[name=' + config.item.qty + ']'),
itemAdd = form.find('[name=' + config.item.add + ']');
// Add the item and refresh cart display
$.ajax({
data: form.serialize() + '&' + config.item.add + '=' + itemAdd.val(),
success: function(response) {
// Momentarily display tooltip over the add-to-cart button
if (itemQty.val() > 0 && tip.css('display') === 'none') {
tip.fadeIn('100').delay('400').fadeOut('100');
}
container.html(response);
$('#jcart-buttons').remove();
}
});
}
...
// Add an item to the cart
// is called from the submit-buttons within each product picture
$('.jcart').submit(function(e) {
add($(this));
e.preventDefault();
});
&#34; loadProducts()&#34;函数将其放入每个项目的#products容器中:
<form method="post" action="" class="jcart">
<fieldset>
<input type="hidden" name="jcartToken" value="<?php echo $_SESSION['jcartToken'];?>" />
<input type="hidden" name="my-item-id" value="SDK12345" />
<input type="hidden" name="my-item-name" value="Product Name" />
<input type="hidden" name="my-item-price" value="1.00" />
<input type="hidden" name="my-item-qty" value="1" />
<ul>
<li><img src="product-image.jpg"/></li>
<li>1.00 Dollar</li>
</ul>
<input type="submit" name="my-add-button" value="Add to cart" class="button" />
</fieldset>
</form>
答案 0 :(得分:1)
我猜你在添加到购物车按钮的绑定点击操作中调用了loadProducts()函数。如果您使用的是具有默认点击行为的元素。您可能希望使用“return false”来防止这种情况发生;在绑定点击功能的最后一行。
像这样:$('a.addtocart').bind('click', function(){
//logic here (ajax)
return false;
});
在你的成功功能之后,还有一个可能在IE中变得混乱的逗号:
success: function(response) {
$('#products').html(response).fadeIn('slow');
},
删除逗号
我认为你的ajax调用中有一个错误,尝试解决它...我无法看到你的php文件的逻辑将产品添加到你的购物篮中。但如果您想发送表单数据(数量,itemid),那么序列化表单数据就足够了。无需传递额外的get变量。
function add(form) {
$.ajax({
data: form.serializeArray(),
url: 'yourfile.php',
success: function(response) {
// logic
}
});
}
答案 1 :(得分:1)
好的,我找到了解决方案。
由于表单是通过ajax加载的,因此jcart.js没有正确解释它们(虽然这些函数都能正常工作)。
“bind”不起作用,但“实时”修复了它:
$('.jcart').live('submit',function(e) {
add($(this));
e.preventDefault();
});