我在magento中有以下添加到购物车按钮和输入字段按钮。我想使用ajax将产品添加到购物车
<input name="qty" type="text" class="input-text qty" id="qty" maxlength="12" value="<?php echo $this->getMinimalQty($_product)== null?1:$this->getMinimalQty($_product) ?>"/></span>
<p><button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" link='<?php echo Mage::helper('checkout/cart')->getAddUrl($_product);?>'><span><span><?php echo $this->__('Add to Cart') ?></span></span></button></p>
我想通过ajax将添加到购物车网址以及产品数量。我试过以下
<script type="text/javascript">
jQuery(document).ready(function($)
{
$('.btn-cart').click(function()
{
var addtocarturl=$(this).attr("link");
alert(addtocarturl);
jQuery.ajax({
type: 'post',
url: addtocarturl,
success: function(response) {
}
});
});
});
似乎不起作用......有什么建议吗?