jquery sum of multiple input fields if same class in one input

前端 未结 8 1438
迷失自我
迷失自我 2020-12-14 02:49

Hello I need to sum the values of same class input in one input with class name total.




        
8条回答
  •  长情又很酷
    2020-12-14 03:20

    I think your issue is here:

    $("#destination").val(sum);
    

    change it to:

    $(".total").val(sum);
    

    And instead of change event i suggest you to use keyup instead.

    $(document).on("keyup"
    

提交回复
热议问题