Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- index %
- 주석이 먹히지 않을 때
- SUB함수
- Git
- Math.ceil()
- 파일질라설치오류
- selectoptions
- FileZilla다운로드
- 1521
- addClass
- Excel
- ctrl+/
- is_check
- calc.plus
- 파일질라설치
- excel중복체크
- FileZilla설치
- slideUp
- Math.floor()
- 파일질라다운로드
- Math.round()
- 증가값
- toFixed()
- Parent
- selectedIndex
- 소스트리인증실패
- push오류
- hide
- calc.minus
- removeClass
Archives
- Today
- Total
잡동사니에도 사랑을
[JSP] MVC활용(4) - 아이디 중복체크, 우편번호 검색(mvcmember) 본문
728x90
반응형
[21.10.13] MVC활용(4) - 아이디 중복체크, 우편번호 검색(mvcmember)
////////writeForm.jsp
<tr>
<td width="100" align="center">아이디</td>
<td>
<input type="text" name="id" id="id" placeholder="아이디 입력">
<input type="button" value="중복체크" id="checkIdBtn">
<div id= "idDiv"></div>
</td>
</tr>
////////checkPost.jsp
<tr>
<td align="center">${zipcodeDTO.zipcode }</td>
<td colspan="3">
<%-- <a href="#" onclick="checkPostClose('${zipcodeDTO.zipcode }','${address }')">${address }</a> --%>
<a href="#" class="addressA">${address }</a>
</td>
</tr>
<script type="text/javascript" src="http://code.jquery.com/jquery-3.6.0.min.js"></script>
<script type="text/javascript" src="../js/member.js"></script>
<script type="text/javascript">
function checkPostClose(zipcode, address) {
opener.writeForm.zipcode.value = zipcode;
opener.writeForm.addr1.value = address;
window.close();
opener.writeForm.addr2.focus();
}
</script>
</body>
</html>
////////member.js
$('#id', opener.document).val($('#checkId').val());
$('#check', opener.document).val($('#checkId').val()); //중복체크 버튼을 눌렀는지 확인
window.close();
$('#pwd', opener.document).focus();
});
$('#zipcodeBtn').click(function(){
window.open("/mvcmember/member/checkPost.do", "checkPost", "width=500 height=500 top=200 left=700");
});
$('.addressA').click(function(){
//alert($(this).text()); - 주소
//alert($(this).parent().prev().text()); - 우편번호
$('#zipcode', opener.document).val($(this).parent().prev().text());
$('#addr1', opener.document).val($(this).text());
window.close();
$('#addr2', opener.document).focus();
});
728x90
반응형
'JAVA_EE > MVC' 카테고리의 다른 글
[JSP] MVC활용(5) - 게시판(mvcmember) (0) | 2021.10.14 |
---|---|
[JSP] MVC활용(3) - 아이디 중복체크 / 회원가입 유효성 검사(mvcmember) (0) | 2021.10.11 |
[21.10.08] MVC활용(2) - 로그인(mvcmember) (0) | 2021.10.11 |
[21.10.07] MVC활용(1) - 회원가입(mvcmember) (0) | 2021.10.09 |