<input type="text" name="mt_tel" id="mt_tel" placeholder=" '-' 없이 입력하세요." maxlength="11" oninput="telinput(this.value)" />
function telinput(mt_tel){
const regex = /^\d+$/;
if (!regex.test(mt_tel)) {
mt_tel = mt_tel.replace(/\D/g, '');
}
$("#mt_tel").val(mt_tel);
}
'웹 개발 이야기 > js, jquery' 카테고리의 다른 글
[JS] bxslider_ cannot read property 'indexof' of undefined (0) | 2023.06.15 |
---|---|
[JS] Slick Slider - 'add' of null 오류 해결 방법 (0) | 2023.06.15 |
[JS] Firebase Web Push (0) | 2023.06.14 |
[JS] Excel 데이터 가져오기 (0) | 2023.06.08 |
[JS] email 정규식 (0) | 2023.05.31 |
댓글