주문시 + - 클릭시 소계 보여주기 > 영카트5 팁자료실

영카트5 팁자료실

주문시 + - 클릭시 소계 보여주기 정보

주문시 + - 클릭시 소계 보여주기

본문

item.php 페이지에서 상품 주문시

+(증가) 버튼을 클릭해도 바로 옆의 금액은 + 로 되어서 고정이 되어 있는데,

이를 해당 금액만큼 표기하게 수정

+(증가) 나 -(차감) 클릭시, 해당 수량만큼의 소계를 보여줌
================================================================
/js/shop.js 476라인 ~ 480 라인
/js/shop.override.js 155라인 ~ 159 라인

        if(type == "0") { // 선택옵션
            //total += (it_price + price) * qty;
            tmp_price  = (it_price + price) * qty;
            total += tmp_price;

        } else { // 추가옵션
            //total += price * qty;
            tmp_price  = price * qty;
            total += tmp_price;
        }

        $("#sit_opt_added li").eq(index).find("span.sit_opt_prc").empty().html(""+number_format(String(tmp_price))+"원");

        // 2020.09.11 중간 오른쪽 화면도 계산을 해야해서 추가함
      $("#sit_buy .sit_opt_added li").eq(index).find("span.sit_opt_prc").empty().html(""+number_format(String(tmp_price))+"원");
================================================================
추천
7

댓글 8개

Uncaught ReferenceError: index is not defined
    at price_calculate (shop.js:514)
    at HTMLDocument.<anonymous> (item.php?it_id=1598683429:868)
    at i (jquery-1.12.4.min.js:2)
    at Object.fireWith [as resolveWith] (jquery-1.12.4.min.js:2)
    at Function.ready (jquery-1.12.4.min.js:2)
    at HTMLDocument.K (jquery-1.12.4.min.js:2)

콘솔에서 이렇게 나오면서 표시가 안되는데 이유가 뭘까요?

514 부분은 올려주신 소스 넣은 것 중

$("#sit_opt_added li").eq(index).find("span.sit_opt_prc").empty().html(""+number_format(String(tmp_price))+"원");

부분입니다
Uncaught ReferenceError: index is not defined
=> index 를 못찾는듯합니다.

아래소스보시면, function(index) 가 보입니다.
index 를 제대로 가져오는지 확인하세요.
=======================================
    $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_price + price) * qty;
            tmp_price  = (it_price + price) * qty;
            total += tmp_price;

        } else { // 추가옵션
            //total += price * qty;
            tmp_price  = price * qty;
            total += tmp_price;
        }

        $("#sit_opt_added li").eq(index).find("span.sit_opt_prc").empty().html(""+number_format(String(tmp_price))+"원");
    });
=======================================
전체 392
영카트5 팁자료실 내용 검색

회원로그인

(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1404호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT