//nav_box 테이블 이름
$("# nav_box tr" ).each(function (i) {
//var text = $(this).children("td:first").text();
//var proid = $(this) .find("input:hidden").val();
//alert("proid==" i "===" proid)
var num = $("#ProNum" i). val() ; //수량
var 가격 = $("#Price" i).val(); //가격
var 퍼센트 = $("#Percent" i).val(); 할인
var 할인Amount = 백분율 * 가격; //할인 가격
$("#discountAmount" i).val(discountAmount.toFixed(2)) //할인 가격
var total = 할인Amount * num; //소액 합계 = 할인 가격 * 수량
$("#Total" i).val(total.toFixed(2)) //소계
});