--- src/main/webapp/WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectUpdt.jsp
+++ src/main/webapp/WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectUpdt.jsp
... | ... | @@ -737,12 +737,15 @@ |
| 737 | 737 |
|
| 738 | 738 |
//문자발송 금액 변경 처리 |
| 739 | 739 |
function fnPriceUpdate(mberId){
|
| 740 |
+ console.log('fnPriceUpdate : ', fnPriceUpdate);
|
|
| 740 | 741 |
|
| 741 | 742 |
var priceChk = false; |
| 742 | 743 |
|
| 743 | 744 |
// 1원 이하인지 금액 체크 |
| 744 | 745 |
$.each($('#msgPriceForm input'), function(index, elem){
|
| 745 |
- if($(this).val() < 1) |
|
| 746 |
+ var value = parseFloat($(this).val()); // 숫자로 변환 |
|
| 747 |
+ console.log('value : ', value);
|
|
| 748 |
+ if(value < 1) |
|
| 746 | 749 |
priceChk = true; |
| 747 | 750 |
}); |
| 748 | 751 |
if(priceChk){
|
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?