From 2957e4ebd8f64c737098237b7e347b9608f5202a Mon Sep 17 00:00:00 2001 From: "hehihoho3@gmail.com" Date: Fri, 13 Dec 2024 10:00:08 +0900 Subject: [PATCH] =?UTF-8?q?fax=20checkFaxNum=20=ED=95=A8=EC=88=98=20?= =?UTF-8?q?=EB=A1=9C=EA=B7=B8=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/js/MJUtill.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/webapp/js/MJUtill.js b/src/main/webapp/js/MJUtill.js index c61729a7..335a7dfc 100644 --- a/src/main/webapp/js/MJUtill.js +++ b/src/main/webapp/js/MJUtill.js @@ -58,9 +58,7 @@ function checkOnlyHpNum(str) { function checkFaxNum(str) { str = removeDash(str); var subNum = str.substring(0,3); - console.log('str : ', str, 'subNum : ', subNum); var regExp = /^(02\d|03[1-3]|04[1-4]|05[1-5]|06[1-4]|030|050|060|070|080|1\d{2})$/; // 수정된 정규식 - console.log('regExp.test(subNum) : ', regExp.test(subNum)); return regExp.test(subNum); }