我如何让它工作,所以它与 AJAX 的更新,它在 view.phtml 上做?它现在重新加载整个页面。
我在我的产品列表中添加了一个数量框。这是我在 list.phtml 上添加的内容:
<form action="<?php echo $this->getAddToCartUrl($_product) ?>” method="post" id="product_addtocart_form_<?php echo $_product->getId()?>"<?php if($_product->getOptions()): ?> enctype="multipart/form-data"<?php endif; ?>>
<?php if(!$_product->isGrouped()): ?>
<label for="qty"><?php echo $this->__('Qty') ?>:</label>
<input type="text" name="qty" id="qty" maxlength="12" value="<?php echo ($this->getMinimalQty($_product)?$this->getMinimalQty($_product):1) ?>” />
<?php endif; ?>
<button type="button" class="button btn-cart” onclick="this.form.submit()">
<span>
<span><?php echo $this->__('Add to Cart') ?></span>
</span>
</button>
</form>
这是我的文件:
list.phtml -> http://pastebin.com/UJ0YvUq9 view.phtml -> http://pastebin.com/7pQtYvfe
希望社区可以帮助我!
你将成为天才。