我想在magento的list.phtml上添加一个数量框。 目前该框的代码是:
<div>
<button type="button" style=" margin-left:185px; min-height:48px;"title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setLocationAjax('<?php echo $this->getAddToCartUrl($_product) ?>','<?php echo $_product->getId()?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button><br /><br/>
</div>
现在只能添加1个产品,但是没有数量框。 如何在不重新加载页面的情况下使其工作?
这些是我在该页面底部加载的脚本。 http://pastebin.com/0bdey92h
希望有人来救我!
答案 0 :(得分:0)
试试这个:
jQuery('button.btn-cart').parent().append('<input type="text" name="qty">');