magento购物车添加减少数量 实时更新购物车
magento实时更新购物车商品数量
<td> <button onclick="addQtyone();" type="submit">+</button> <input id="qtyPro" name="cart[<?php echo $_item->getId() ?>][qty]" value="<?php echo $this->getQty() ?>" size="4" title="<?php echo $this->__('Qty') ?>" maxlength="12" /> <button type="submit" onclick="redQtyone();">-</button> <div></div> </td> <script type="text/javascript"> function addQtyone() { var qtyPro=$('qtyPro'); qtyPro.value = parseInt(qtyPro.value)+1; } function redQtyone() { var qtyPro=$('qtyPro'); qtyPro.value = parseInt(qtyPro.value)-1; } </script>
转载请注明出处!小鱼阁工作室 -专注zencart建站,织梦企业建站,ecshop商城,二次开发,产品采集,模板修改!技术QQ 631992791