주소록 관리 문자 주소록 개별 등록시 핸드폰 및 일반전화 유효성 체크 스크립트 추가

This commit is contained in:
woo 2023-07-03 12:15:24 +09:00
parent bbc45b7a39
commit 9a73b94842

View File

@ -106,6 +106,17 @@ function insertAddrAjax() {
//if(!confirm("주소록을 추가하시겠습니까?")) {
// return;
//}
if(!checkHpNum(form.addrPhoneNo.value)){//휴대폰 유효성 검사
if(!checkNorPhoneNum(form.addrPhoneNo.value)){//일반전화 유효성 검사
alert("잘못된 휴대폰번호 또는 일반전화 번호 입니다.");
return false;
}
}
var data = new FormData(form);
$.ajax({