가격계산 스크립트 한번만 부탁드립니다.
본문
예전질문에서 아직 끙끙 앓고 있는데요 ;; https://sir.kr/qa/494765
shop.js 부분에서 theme 의 item.form.skin의 가격계산부분에서 막히는게 있어서 질문드립니다.
// 가격계산 - usd
function price_calculateusd()
{
var it_usd = parseInt($("input#it_price").val());
if(isNaN(it_usd))
return;
var $el_prc = $("input.io_price");
var $el_qty = $("input[name^=ct_qty]");
var $el_type = $("input[name^=io_type]");
var price, type, qty, total = 0;
$el_prc.each(function(index) {
price = parseInt($(this).val());
qty = parseInt($el_qty.eq(index).val());
type = $el_type.eq(index).val();
if(type == "0") { // 선택옵션
total += (it_usd + price) * qty;
} else { // 추가옵션
total += price * qty;
}
});
$("#sit_tot_priceusd").empty().html("<span>TOTAL PRICE :</span> "+number_format(String(total))+"$");
}
답변을 작성하시기 전에 로그인 해주세요.