2 回答
TA贡献1825条经验 获得超4个赞
好的,您的问题已经有了答案..
首先,您有总计算方法。
function total(){
var total=0;
$('.total_price').each(function(i,e){
var total_price=$(this).val()-0;
total +=total_price;
});
$('.total').html("Rp. "+total);
}
然后你也有删除函数
所以只需在行删除后调用 total 函数。
$('.remove').live('click',function(){
var last=$('tbody tr').length;
if(last==1){
alert("You cannot delete the last row.");
}
else{
$(this).parent().parent().remove();
//Here your row has been deleted.
total();
}
});
TA贡献1878条经验 获得超4个赞
删除项目后尝试调用函数 total
$('.remove').live('click',function(){
var last=$('tbody tr').length;
if(last==1){
alert("You cannot delete the last row.");
}
else{
$(this).parent().parent().remove();
// Call your function total here
}
});
添加回答
举报