zhangheliang
                $(\'#productTable tr\').each(function(i){
                    if(i>=1){
                        var price =  $(this).children(\'td\').eq(3).text();
                        var successPrice = $(this).children(\'td\').eq(4).text();
                        var number =  $(this).children(\'td\').eq(8).children(\'#tdinput\').val();
                        if(!isEmpty(trim(number))){
                            var cost = parseInt(price) - parseInt(successPrice);
                            totleCostAmt += cost * number;
                        }
                    }
                });

 

分类:

技术点:

相关文章:

  • 2021-12-09
  • 2021-11-29
  • 2021-11-29
  • 2022-12-23
  • 2021-10-04
  • 2021-12-05
  • 2022-12-23
  • 2022-02-18
猜你喜欢
  • 2022-12-23
  • 2021-06-08
  • 2022-12-23
  • 2022-12-23
  • 2021-11-21
  • 2022-12-23
相关资源
相似解决方案