网店。大车。购物车中的产品:
name | price | count | pricecount
Car | 10usd | 2 | 20usd
count 是<input type='number' class='changecount'>
,如果我改变它,我想取输入的数字,然后乘以 price 并更改 pricecount 的文本值。但我想这样做,效果如下:
price = 10; count = 2; pricecount = 20; ->> change count to 3 so pricecount = 30;
pricecount changes from 20 to 30 with effect showing 21,22,23..30 (like timer)
更改文本但没有效果
$('.changecount').blur(function(){
var $price = $(this).parent().siblings('.gprice').text();
var $value = $(this).val();
var $pricecount = $price * $value;
$(this).parent().siblings('.gpricecount').text($pricecount);
});
我怎样才能用 JQuery 做到这一点?