From 34da8a5b69a158981467e24e4479537f99323cb5 Mon Sep 17 00:00:00 2001 From: "hehihoho3@gmail.com" Date: Mon, 6 Jan 2025 16:11:13 +0900 Subject: [PATCH] =?UTF-8?q?=ED=85=8D=EC=8A=A4=ED=8A=B8=EB=A5=BC=20?= =?UTF-8?q?=EC=88=AB=EC=9E=90=EB=A1=9C=20=EC=BA=90=EC=8A=A4=ED=8C=85?= =?UTF-8?q?=ED=9B=84=20=EC=A7=84=ED=96=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectUpdt.jsp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/webapp/WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectUpdt.jsp b/src/main/webapp/WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectUpdt.jsp index 48590afc..68f71117 100644 --- a/src/main/webapp/WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectUpdt.jsp +++ b/src/main/webapp/WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectUpdt.jsp @@ -737,12 +737,15 @@ function fnPriceReset() { //문자발송 금액 변경 처리 function fnPriceUpdate(mberId){ + console.log('fnPriceUpdate : ', fnPriceUpdate); var priceChk = false; // 1원 이하인지 금액 체크 $.each($('#msgPriceForm input'), function(index, elem){ - if($(this).val() < 1) + var value = parseFloat($(this).val()); // 숫자로 변환 + console.log('value : ', value); + if(value < 1) priceChk = true; }); if(priceChk){