jquery에서 number_format처리 한 값
본문
안녕하세요.
$WON_exchg = number_format($tot_price);
echo "<span id=pay>".display_price($tot_price)."</span>";
이렇게 tot_price를 number_format으로 처리하고 이걸 특정 체크박스 클릭시 보여주는 부분인데요
클릭했을때
$("#pay").html(<?=$WON_exchg?>);
이렇게 처리하니 , 뒷자리가 모두 나오지 않고 있습니다.
1,000,000 이면 1만 나오고 454,200 이면 454만 나오고 있습니다.
이유가 뭔지 모르겠네요;;;;;
답변 2
$tot_price 값에 이미 콤마가 들어가있기 떼문입니다
$tot_price ='123,000'; ==> 123
$WON_exchg = number_format($tot_price+"");
$("#pay").html("<?=$WON_exchg?>");
이렇게 해보세요.
답변을 작성하시기 전에 로그인 해주세요.