购物车商品加减效果

思路:

  根据点击运算符进行相关的运算。

  1、获取点击的运算符;

  2、通过节点关系找到input的值;

  3、进行运算;

  4、将计算后的值返回给本身

  

JavaScript方式:

<body>
    <button οnclick="calculate(this)">-</button>
    <input type="text" size="2" value="1" name="num">
    <button οnclick="calculate(this)">+</button><br/>

    <button οnclick="calculate(this)">-</button>
    <input type="text" size="2" value="1" name="num">
    <button οnclick="calculate(this)">+</button>

    <script>
        function calculate(ob){
            var opera = ob.innerHTML;
            if(opera == '+'){
                // console.log(ob.previousSibling.previousSibling);
                var input = ob.previousSibling.previousSibling;
                input.value = parseInt(input.value) + 1;
            }else if(opera == '-'){
                var input = ob.nextSibling.nextSibling;
                input.value = parseInt(input.value) - 1;
                if( input.value < 1 ){
                    input.value = 1;
                }
            }
        }
    </script>
</body>

 

jQuery方式:

<body>
    <button>-</button>
    <input type="text" size="2" value="1" name="num">
    <button>+</button><br/>

    <button>-</button>
    <input type="text" size="2" value="1" name="num">
    <button>+</button><br/>

    <script>
        $(function(){
            $('button').on('click',function(){
                var opera = $(this).text();
                // console.log(opera);
                if(opera == '+'){
                    var num = $(this).prev();
                    num.val( parseInt( num.val() ) + 1 );
                    // console.log(num.val());
                }else if(opera == '-'){
                    var num = $(this).next();
                    num.val( parseInt( num.val() ) - 1 );
                    if(num.val() < 1){
                        // console.log(num.val());
                        num.val(1);
                    }
                }
            });
        });
    </script>
</body>

 

转载于:https://www.cnblogs.com/huang-cheng/p/5167668.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值