중복확인을 일일이 짜는게 귀찮아서... 아래처럼 해버렸네요 ㅎㅎㅎ
날이 갈수록 꼼수만 늘어 가는 것 같습니다.
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년 전 | 3611 | ||
| 7229 | 11년 전 | 3738 | ||
| 7228 | 11년 전 | 3781 | ||
| 7227 | 11년 전 | 3908 | ||
| 7226 | 11년 전 | 2363 | ||
| 7225 | 11년 전 | 17448 | ||
| 7224 |
AngryDev
|
11년 전 | 1348 | |
| 7223 |
돌아온깡통
|
11년 전 | 1094 | |
| 7222 |
돌아온깡통
|
11년 전 | 1035 | |
| 7221 |
돌아온깡통
|
11년 전 | 881 | |
| 7220 |
돌아온깡통
|
11년 전 | 1001 | |
| 7219 |
돌아온깡통
|
11년 전 | 834 | |
| 7218 |
돌아온깡통
|
11년 전 | 661 | |
| 7217 |
돌아온깡통
|
11년 전 | 1044 | |
| 7216 |
돌아온깡통
|
11년 전 | 789 | |
| 7215 |
돌아온깡통
|
11년 전 | 700 | |
| 7214 |
돌아온깡통
|
11년 전 | 1050 | |
| 7213 |
돌아온깡통
|
11년 전 | 919 | |
| 7212 |
돌아온깡통
|
11년 전 | 713 | |
| 7211 |
돌아온깡통
|
11년 전 | 866 | |
| 7210 |
돌아온깡통
|
11년 전 | 885 | |
| 7209 |
돌아온깡통
|
11년 전 | 889 | |
| 7208 |
돌아온깡통
|
11년 전 | 999 | |
| 7207 |
돌아온깡통
|
11년 전 | 623 | |
| 7206 |
돌아온깡통
|
11년 전 | 675 | |
| 7205 |
돌아온깡통
|
11년 전 | 861 | |
| 7204 |
돌아온깡통
|
11년 전 | 718 | |
| 7203 |
돌아온깡통
|
11년 전 | 744 | |
| 7202 |
돌아온깡통
|
11년 전 | 708 | |
| 7201 |
돌아온깡통
|
11년 전 | 659 | |
| 7200 |
돌아온깡통
|
11년 전 | 704 | |
| 7199 |
돌아온깡통
|
11년 전 | 1317 | |
| 7198 |
돌아온깡통
|
11년 전 | 646 | |
| 7197 |
돌아온깡통
|
11년 전 | 960 | |
| 7196 |
돌아온깡통
|
11년 전 | 859 | |
| 7195 |
돌아온깡통
|
11년 전 | 604 | |
| 7194 |
돌아온깡통
|
11년 전 | 632 | |
| 7193 |
돌아온깡통
|
11년 전 | 697 | |
| 7192 |
돌아온깡통
|
11년 전 | 725 | |
| 7191 |
joe031
|
11년 전 | 1253 | |
| 7190 | 11년 전 | 4146 | ||
| 7189 | 11년 전 | 1231 | ||
| 7188 |
잘살아보자
|
11년 전 | 946 | |
| 7187 | 11년 전 | 1424 | ||
| 7186 |
kiplayer
|
11년 전 | 7542 | |
| 7185 | 11년 전 | 1133 | ||
| 7184 |
잘살아보자
|
11년 전 | 2331 | |
| 7183 |
잘살아보자
|
11년 전 | 1145 | |
| 7182 |
잘살아보자
|
11년 전 | 1208 | |
| 7181 | 11년 전 | 1483 | ||
| 7180 |
하얀비요일
|
11년 전 | 982 | |
| 7179 |
잘살아보자
|
11년 전 | 981 | |
| 7178 | 11년 전 | 976 | ||
| 7177 | 11년 전 | 999 | ||
| 7176 | 11년 전 | 1658 | ||
| 7175 |
|
11년 전 | 1044 | |
| 7174 |
kiplayer
|
11년 전 | 1172 | |
| 7173 | 11년 전 | 959 | ||
| 7172 |
잘살아보자
|
11년 전 | 4642 | |
| 7171 |
잘살아보자
|
11년 전 | 701 | |
| 7170 | 11년 전 | 1066 | ||
| 7169 |
초심의설렘
|
11년 전 | 1466 | |
| 7168 | 11년 전 | 1001 | ||
| 7167 |
잘살아보자
|
11년 전 | 5282 | |
| 7166 |
잘살아보자
|
11년 전 | 3425 | |
| 7165 | 11년 전 | 4949 | ||
| 7164 | 11년 전 | 823 | ||
| 7163 | 11년 전 | 1193 | ||
| 7162 |
울라라라우
|
11년 전 | 1379 | |
| 7161 | 11년 전 | 1256 | ||
| 7160 |
skyler
|
11년 전 | 1185 | |
| 7159 |
|
11년 전 | 691 | |
| 7158 |
|
11년 전 | 3350 | |
| 7157 |
잘살아보자
|
11년 전 | 2887 | |
| 7156 |
잘살아보자
|
11년 전 | 2221 | |
| 7155 |
잘살아보자
|
11년 전 | 1448 | |
| 7154 |
잘살아보자
|
11년 전 | 1447 | |
| 7153 | 11년 전 | 2886 | ||
| 7152 |
울라라라우
|
11년 전 | 825 | |
| 7151 | 11년 전 | 1053 | ||
| 7150 |
잘살아보자
|
11년 전 | 2384 | |
| 7149 |
잘살아보자
|
11년 전 | 3289 | |
| 7148 |
잘살아보자
|
11년 전 | 1188 | |
| 7147 |
잘살아보자
|
11년 전 | 755 | |
| 7146 |
잘살아보자
|
11년 전 | 1395 | |
| 7145 |
잘살아보자
|
11년 전 | 706 | |
| 7144 |
잘살아보자
|
11년 전 | 1300 | |
| 7143 |
잘살아보자
|
11년 전 | 755 | |
| 7142 |
잘살아보자
|
11년 전 | 1445 | |
| 7141 |
잘살아보자
|
11년 전 | 1196 | |
| 7140 |
잘살아보자
|
11년 전 | 2004 | |
| 7139 |
잘살아보자
|
11년 전 | 3668 | |
| 7138 |
잘살아보자
|
11년 전 | 3163 | |
| 7137 |
잘살아보자
|
11년 전 | 3626 | |
| 7136 |
잘살아보자
|
11년 전 | 1380 | |
| 7135 |
gooroo
|
11년 전 | 1610 | |
| 7134 |
열라뽕똬이
|
11년 전 | 2315 | |
| 7133 |
|
11년 전 | 1014 | |
| 7132 | 11년 전 | 1425 | ||
| 7131 | 11년 전 | 3567 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기