最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > Magento > Magento教程 >

magento购物车添加减少数量 实时更新购物车

时间:2014-08-31 22:32来源:未知 作者:最模板zuimoban 点击:
magento实时更新购物车商品数量 tdbutton onclick=addQtyone(); type=submit+/buttoninput id=qtyPro name=cart[?php echo $_item -getId() ?][qty] value=?php echo $this -getQty() ? size=4 title=?php echo $this -__(Qty) ? maxlength=12 /bu

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>
复制代码

 

(责任编辑:最模板)
------分隔线----------------------------
栏目列表
推荐内容