CHECK 썸네일형 리스트형 전화번호 체크하기(휴대전화, 유선, 대표번호 등등) if (!function_exists('phone_number_check')) { function phone_number_check($pString) { $is_rule = false; $re_phoneNum = preg_replace('/-/', '', $pString); $mobile = preg_match('/^01[016789]{1}-?([0-9]{3,4})-?[0-9]{4}$/', $pString); $tel = preg_match('/^(02|0[3-6]{1}[1-5]{1})-?([0-9]{3,4})-?[0-9]{4}$/', $pString); $rep = preg_match('/^(15|16|18)[0-9]{2}-?[0-9]{4}$/', $pString); $rep2 = preg_match(.. 더보기 [jQuery] Select 값 가져오기 selectbox를 사용할때 어떤값이 선택되었는지 가져오는 방법 ! $("input[name='name']:checked").val(); 이렇게 해주게되면 선택된 selectbox 값을 받아올 수 있음. 더보기 [JavaScript] Email 체크 1 function email_chk(mail){ 2 var t = escape(mail); 3 if(t.match(/^(\w+)@(\w+)[.](\w+)$/ig) == null && t.match(/^(\w+)@(\w+)[.](\w+)[.](\w+)$/ig) == null){ 4 return false; 5 } else { 6 return true; 7 } 8 } 더보기 이전 1 다음