0

我很确定我很愚蠢,但为什么这不起作用!?

form.find( '.per_time' ).on( 'change', function() {
            var price = parseInt( form.find( '.section-price' ).attr('data-price'), 10 ) ;
            var multiplier = parseInt( $( this ).val(), 10 );
            var newprice = (price / 7) * multiplier;
            form.find( '.section-price .price' ).html( newprice )
        })

这是我关心的这条线:

var newprice = (price / 7) * multiplier;

计算不是除以 7,它只计算price * multiplier?

这段代码似乎也决定了会发生什么,但我很确定它只是上述代码的较短版本。

n.find(".per_time").on("change",function(){var t=parseInt(n.find(".section-price").attr("data-price"),10),r=parseInt(e(this).val(),10),i=(t/7)*r;n.find(".section-price .price").html(i)})

感谢您提前提供的所有帮助。这是输入的示例。

(595 / 7) * 10

4

1 回答 1

0

尝试:

var newprice = price * multiplier / 7.0;

假设您没有收到parseInt(0.XXXX).

于 2013-06-12T16:50:01.487 回答