숫자2 [JS/JQUERY] input text 숫자만 입력 (정규식) function telinput(mt_tel){ const regex = /^\d+$/; if (!regex.test(mt_tel)) { mt_tel = mt_tel.replace(/\D/g, ''); } $("#mt_tel").val(mt_tel); } 2023. 6. 30. [JS] 숫자에 콤마 붙이기 function addComma(x) { var idx = 0; while(true){ idx = x.indexOf(","); x = x.replace(",",""); if(idx 2023. 3. 8. 이전 1 다음