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
- selectedIndex
- removeClass
- Excel
- calc.plus
- hide
- FileZilla다운로드
- selectoptions
- 1521
- Math.floor()
- 파일질라설치오류
- push오류
- ctrl+/
- 파일질라다운로드
- calc.minus
- 소스트리인증실패
- Math.round()
- addClass
- 주석이 먹히지 않을 때
- SUB함수
- FileZilla설치
- toFixed()
- 파일질라설치
- slideUp
- Math.ceil()
- index %
- Parent
- excel중복체크
- Git
- is_check
- 증가값
Archives
- Today
- Total
잡동사니에도 사랑을
[21.09.29] writeForm(memberServlet) 본문
728x90
반응형
우편번호 검색 버튼 클릭 시 우편번호 검색할 수 있는 창이 뜨도록 구현하려고 한다.
drop table member purge;
create table member(
name varchar2(30) not null,
id varchar2(30) primary key, --기본키, unique, not null, 무결성 제약 조건
pwd varchar2(30) not null,
gender varchar2(3),
email1 varchar2(20),
email2 varchar2(20),
tel1 varchar2(10),
tel2 varchar2(10),
tel3 varchar2(10),
zipcode varchar2(10),
addr1 varchar2(100),
addr2 varchar2(100),
logtime date);
//JavaScript
function checkWrite() {
document.getElementById("nameDiv").innerText = "";
document.getElementById("idDiv").innerText = "";
document.getElementById("pwdDiv").innerText = "";
document.getElementById("repwdDiv").innerText = "";
if (document.writeForm.name.value == "")
document.getElementById("nameDiv").innerText = "이름을 입력해주세요";
else if (document.writeForm.id.value == "")
document.getElementById("idDiv").innerText = "아이디를 입력해주세요";
else if (document.writeForm.pwd.value == "")
document.getElementById("pwdDiv").innerText = "비밀번호를 입력해주세요";
else if (document.writeForm.pwd.value != document.writeForm.repwd.value)
document.getElementById("repwdDiv").innerText = "비밀번호가 맞지 않습니다";
else
document.writeForm.submit();
}
//jQuery
$(function() {
//회원가입
$('#writeBtn').click(function() {
$('#nameDiv').empty();
$('#idDiv').empty();
$('#pwdDiv').empty();
$('#repwdDiv').empty();
//id 속성
/*if($('#name').val() == '') $('#nameDiv').html('이름 입력'); */
//name 속성
if ($('input[name="name"]').val() == '') {
$('#nameDiv').html('이름 입력');
$('#name').focus();
} else if ($('input[name="id"]').val() == '')
$('#idDiv').html('아이디 입력');
else if ($('input[name="pwd"]').val() == '')
$('#pwdDiv').html('비밀번호 입력');
else if ($('input[name="pwd"]').val() != $('input[name="repwd"]').val())
$('#repwdDiv').html('비밀번호 틀림');
else
$('form[name="writeForm"]').submit();
});
//로그인
$('#loginBtn').click(function() {
$('#idDiv').empty();
$('#pwdDiv').empty();
if ($('input[name="id"]').val() == '')
$('#idDiv').html('아이디 입력');
else if ($('input[name="pwd"]').val() == '')
$('#pwdDiv').html('비밀번호 입력');
else
$('form[name="loginForm"]').submit();
});
});
728x90
반응형
'JAVA_EE > Servlet' 카테고리의 다른 글
[21.09.29] (0) | 2021.09.30 |
---|---|
[21.09.28] writeform(memberServlet) (0) | 2021.09.29 |
[21.09.27] writeForm.html (memberServlet) - (0) | 2021.09.27 |
[21.09.27] CalcServlet, input.html, web.xml(testServlet) - (0) | 2021.09.27 |
[21.09.27] ParamServlet, parameter.html, web.xml(testServlet) - (0) | 2021.09.27 |