Javascrip中的乘法

时间:2019-09-26 14:18:29

标签: javascript multiplying

我需要将priceMonthly乘以30,如何在此“ if”函数中做到这一点?我正在使用它来实时回显输入的数字,但是我需要将该数字乘以30。剂量有人认为过高,或者有人可以指导我为什么它不起作用?

function keyup_fill(ele, ele_place) {
    $(ele).on("keyup", function(event) {

        if ( $(ele).attr("name") === "priceMonthly" ) {
            if (!$.isNumeric($(ele).val())) {
                return ($(ele).val()*30); //not working
            }
        }

      var newText = event.target.value ;
        $(ele_place).html(newText); 
    });
}


keyup_fill("#priceMonthly", "#priceMonthly-place");

1 个答案:

答案 0 :(得分:0)

如果要在...中显示的结果是将// Find the length of the string which has the smallest length // Truncate the other string so that they have both the same lengths // Compare them 中输入的值乘以30的结果,则可以使用代码进行此操作(请注意,我假设两个id都代表输入元素):

#priceMonthly-place