중복확인을 일일이 짜는게 귀찮아서... 아래처럼 해버렸네요 ㅎㅎㅎ
날이 갈수록 꼼수만 늘어 가는 것 같습니다.
ps. 그 누구에게 도움이 되시기를 ㅎㅎ (참고로 디자인 들어가기 전 사전작업 파일 입니다.)
[code]
| <form action="http://example.com/xe/module/app_join/join.php" method="post" onsubmit="return JoinCheck();"> | |
| 이름<input type="text" name="name" required><br> | |
| 휴대번호<input type="text" name="phone" id="phone" required class="telnum"> | |
| <a href="#" class="duplication" ac-type="phone" ac-target="#phone" ac-output="#phone_val" ac-name="휴대번호" class="btn30">중복확인</a> | |
| <span id="phone_val"></span> | |
| <br> | |
| 이메일<input type="text" name="email" class="email" required> | |
| <a href="#" class="duplication" ac-type="email" ac-target=".email" ac-output="#email_val" ac-name="이메일" class="btn30">중복확인</a> | |
| <span id="email_val"></span><br> | |
| 비밀번호<input type="password" name="password" required><br> | |
| 비밀번호 확인<input type="password" name="password_re" id="password_re" required> | |
| <span></span><br> | |
| <input type="submit" value="전송"> | |
| </form> | |
| <script type="text/javascript"> | |
| $(function() { | |
| window.duplicationValue = []; | |
| window.duplicationIndex = []; | |
| var i = 0; | |
| $('.duplication').each(function() { | |
| var type = $(this).attr('ac-type'); | |
| var name = $(this).attr('ac-name'); | |
| var arr = []; | |
| arr['type'] = type; | |
| arr['name'] = name; | |
| // array push | |
| window.duplicationValue.push(arr); | |
| // 인덱스 값 기록 | |
| window.duplicationIndex[type] = i; | |
| i++; | |
| }); | |
| $('.duplication').on('click', function(e) { | |
| e.preventDefault(); | |
| var type = $(this).attr('ac-type'); | |
| var name = $(this).attr('ac-name'); | |
| var target = $(this).attr('ac-target'); | |
| var output = $(this).attr('ac-output'); | |
| var index = window.duplicationIndex[type]; | |
| // 입력값 확인 | |
| if(!$(target).val()) { | |
| alert(name+'(을)를 입력하여주세요.'); | |
| $(target).focus(); | |
| return false; | |
| } | |
| // 중복확인 | |
| new AjaxTB(output, 'http://example.com/xe/module/app_join/ajax/duplication.check.php', '?type='+type+'&val='+$(target).val()).Sender(); | |
| window.duplicationValue[index]['val'] = $(target).val(); | |
| window.duplicationValue[index]['target'] = target; | |
| window.duplicationValue[index]['duplication'] = $('#duplication_'+type).val(); | |
| }); | |
| }); | |
| // submit 검사 | |
| function JoinCheck() { | |
| var msg; | |
| // 유효성 검사 | |
| for(var i=0; i<window.duplicationValue.length; i++) { | |
| if(window.duplicationValue[i]['duplication'] == 1) { | |
| var duplication = window.duplicationValue[i]['duplication']; | |
| var target = window.duplicationValue[i]['target']; | |
| var type = window.duplicationValue[i]['type']; | |
| var name = window.duplicationValue[i]['name']; | |
| var val = window.duplicationValue[i]['val']; | |
| msg = val+'(은)는 다른 사용자께서 사용중입니다.'; | |
| break; | |
| } | |
| } | |
| // 비밀번호 유효성 검사 | |
| if($('input[name=password]').val() != $('input[name=password_re]').val() && !msg) { | |
| msg = '비밀번화 확인이 일치 하지 않습니다.'; | |
| target = '#password_re'; | |
| } | |
| // 에러 메시지가 있다면 return 하지 않고 메시지를 보여줌 | |
| if(msg) { | |
| alert(msg); | |
| $(target).focus(); | |
| return false; | |
| } | |
| } | |
| </script> |
[/code]
댓글 2개
11년 전
캬~~ XE 모듈도 만드실 수 있다니 리얼 능력자~!!!
Terrorboy
11년 전
xe모듈은 아니구요.
그누 확장 기능 폴더 명이 xe입니다.
그누 확장 기능 폴더 명이 xe입니다.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7230 | 11년 전 | 3616 | ||
| 7229 | 11년 전 | 3746 | ||
| 7228 | 11년 전 | 3785 | ||
| 7227 | 11년 전 | 3911 | ||
| 7226 | 11년 전 | 2365 | ||
| 7225 | 11년 전 | 17450 | ||
| 7224 |
AngryDev
|
11년 전 | 1356 | |
| 7223 |
돌아온깡통
|
11년 전 | 1102 | |
| 7222 |
돌아온깡통
|
11년 전 | 1043 | |
| 7221 |
돌아온깡통
|
11년 전 | 882 | |
| 7220 |
돌아온깡통
|
11년 전 | 1005 | |
| 7219 |
돌아온깡통
|
11년 전 | 835 | |
| 7218 |
돌아온깡통
|
11년 전 | 665 | |
| 7217 |
돌아온깡통
|
11년 전 | 1048 | |
| 7216 |
돌아온깡통
|
11년 전 | 792 | |
| 7215 |
돌아온깡통
|
11년 전 | 708 | |
| 7214 |
돌아온깡통
|
11년 전 | 1058 | |
| 7213 |
돌아온깡통
|
11년 전 | 925 | |
| 7212 |
돌아온깡통
|
11년 전 | 716 | |
| 7211 |
돌아온깡통
|
11년 전 | 868 | |
| 7210 |
돌아온깡통
|
11년 전 | 894 | |
| 7209 |
돌아온깡통
|
11년 전 | 892 | |
| 7208 |
돌아온깡통
|
11년 전 | 1005 | |
| 7207 |
돌아온깡통
|
11년 전 | 623 | |
| 7206 |
돌아온깡통
|
11년 전 | 679 | |
| 7205 |
돌아온깡통
|
11년 전 | 862 | |
| 7204 |
돌아온깡통
|
11년 전 | 726 | |
| 7203 |
돌아온깡통
|
11년 전 | 746 | |
| 7202 |
돌아온깡통
|
11년 전 | 713 | |
| 7201 |
돌아온깡통
|
11년 전 | 663 | |
| 7200 |
돌아온깡통
|
11년 전 | 707 | |
| 7199 |
돌아온깡통
|
11년 전 | 1320 | |
| 7198 |
돌아온깡통
|
11년 전 | 649 | |
| 7197 |
돌아온깡통
|
11년 전 | 965 | |
| 7196 |
돌아온깡통
|
11년 전 | 865 | |
| 7195 |
돌아온깡통
|
11년 전 | 609 | |
| 7194 |
돌아온깡통
|
11년 전 | 640 | |
| 7193 |
돌아온깡통
|
11년 전 | 703 | |
| 7192 |
돌아온깡통
|
11년 전 | 730 | |
| 7191 |
joe031
|
11년 전 | 1257 | |
| 7190 | 11년 전 | 4155 | ||
| 7189 | 11년 전 | 1240 | ||
| 7188 |
잘살아보자
|
11년 전 | 955 | |
| 7187 | 11년 전 | 1431 | ||
| 7186 |
kiplayer
|
11년 전 | 7548 | |
| 7185 | 11년 전 | 1135 | ||
| 7184 |
잘살아보자
|
11년 전 | 2335 | |
| 7183 |
잘살아보자
|
11년 전 | 1147 | |
| 7182 |
잘살아보자
|
11년 전 | 1212 | |
| 7181 | 11년 전 | 1487 | ||
| 7180 |
하얀비요일
|
11년 전 | 986 | |
| 7179 |
잘살아보자
|
11년 전 | 982 | |
| 7178 | 11년 전 | 978 | ||
| 7177 | 11년 전 | 1005 | ||
| 7176 | 11년 전 | 1663 | ||
| 7175 |
|
11년 전 | 1045 | |
| 7174 |
kiplayer
|
11년 전 | 1173 | |
| 7173 | 11년 전 | 959 | ||
| 7172 |
잘살아보자
|
11년 전 | 4643 | |
| 7171 |
잘살아보자
|
11년 전 | 704 | |
| 7170 | 11년 전 | 1069 | ||
| 7169 |
초심의설렘
|
11년 전 | 1472 | |
| 7168 | 11년 전 | 1004 | ||
| 7167 |
잘살아보자
|
11년 전 | 5283 | |
| 7166 |
잘살아보자
|
11년 전 | 3432 | |
| 7165 | 11년 전 | 4951 | ||
| 7164 | 11년 전 | 828 | ||
| 7163 | 11년 전 | 1199 | ||
| 7162 |
울라라라우
|
11년 전 | 1383 | |
| 7161 | 11년 전 | 1259 | ||
| 7160 |
skyler
|
11년 전 | 1187 | |
| 7159 |
|
11년 전 | 699 | |
| 7158 |
|
11년 전 | 3355 | |
| 7157 |
잘살아보자
|
11년 전 | 2891 | |
| 7156 |
잘살아보자
|
11년 전 | 2221 | |
| 7155 |
잘살아보자
|
11년 전 | 1451 | |
| 7154 |
잘살아보자
|
11년 전 | 1447 | |
| 7153 | 11년 전 | 2892 | ||
| 7152 |
울라라라우
|
11년 전 | 828 | |
| 7151 | 11년 전 | 1057 | ||
| 7150 |
잘살아보자
|
11년 전 | 2385 | |
| 7149 |
잘살아보자
|
11년 전 | 3290 | |
| 7148 |
잘살아보자
|
11년 전 | 1191 | |
| 7147 |
잘살아보자
|
11년 전 | 760 | |
| 7146 |
잘살아보자
|
11년 전 | 1403 | |
| 7145 |
잘살아보자
|
11년 전 | 717 | |
| 7144 |
잘살아보자
|
11년 전 | 1306 | |
| 7143 |
잘살아보자
|
11년 전 | 761 | |
| 7142 |
잘살아보자
|
11년 전 | 1448 | |
| 7141 |
잘살아보자
|
11년 전 | 1199 | |
| 7140 |
잘살아보자
|
11년 전 | 2014 | |
| 7139 |
잘살아보자
|
11년 전 | 3670 | |
| 7138 |
잘살아보자
|
11년 전 | 3165 | |
| 7137 |
잘살아보자
|
11년 전 | 3627 | |
| 7136 |
잘살아보자
|
11년 전 | 1384 | |
| 7135 |
gooroo
|
11년 전 | 1612 | |
| 7134 |
열라뽕똬이
|
11년 전 | 2316 | |
| 7133 |
|
11년 전 | 1016 | |
| 7132 | 11년 전 | 1428 | ||
| 7131 | 11년 전 | 3571 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기