[사용자] 결제관리 > 요금안내/견적내기 > 견적내기 ==>입력값 오류

This commit is contained in:
hylee 2024-07-10 17:08:15 +09:00
parent 2b52502c50
commit cf4cf39a74

View File

@ -316,7 +316,10 @@ function inputNumberFormatPay(obj) {
function inputPagesNumberFormatPay(obj) {
$(obj).val($(obj).val().replace(/[^0-9]/g,""));
$('#casePage').val(numberWithCommas(obj.value));
$(obj).val(numberWithCommas(obj.value));
}
function inputPagesNumber(obj) {
$(obj).val($(obj).val().replace(/[^0-9]/g,""));
}
function fn_gunClear(){
@ -720,7 +723,7 @@ function getMberGrdChk() {
<th>연락처</th>
<td>
<label for="" class="label">연락처 입력</label>
<input type="text" id="mobile" name="mobile" style="width: 400px;">
<input type="text" onkeyup="inputPagesNumber(this)"; maxlength="11" id="mobile" name="mobile" style="width: 400px;">
</td>
</tr>
<tr>
@ -757,7 +760,7 @@ function getMberGrdChk() {
<th>건수</th>
<td class="publish_btn">
<label for="" class="label">건수 입력</label>
<input type="text" id="caseNumber" name="caseNumber" style="width: 210px;" onkeyup="inputNumberFormatPay(this)">
<input type="text" id="caseNumber" numberOnly maxlength="10" name="caseNumber" style="width: 210px;" onkeyup="inputNumberFormatPay(this)">
<p class="input_in">건</p>
<div>
<button type="button" class="btnType" id="btnItemAdd">품목추가<i class="arrow_img"></i></button>