我想要实现的目标:
我想从:
<span class="item_price cd_price">0.53</span>
当输入:
<input type="text" value="50" class="item_Quantity cd_quantity">
大于 100 时减去 0.09。
我试过的:
$('.cd_quantity').blur(function(){
if ( $(this).val() >= 50 && $(this).val() <= 99 ) {
$('.cd_price').text('0.53')
}
if ( $(this).val() >= 100 && $(this).val() <= 199 ) {
$('.cd_price').text('0.44')
}
})
尽管所有这些都是替换跨度的内容。而且我对查询的总和不太了解。
提前谢谢各位!