function formCheck() {
var title = document.forms[0].title.value;
var writer = document.forms[0].writer.value;
var content = document.forms[0].content.value;
//text 값이 null 혹은 "" 공백이들어오지 않게 하는 표현식
if(title == null || title == ""){
alert("제목을 입력하세요");
document.forms[0].title.focus();
return false;
}
if(writer== null || writer==""){
alert("작성자를 입력하세요");
document.forms[0].writer.focus();
return false;
//이메일 형식으로만 입력이 가능한 표현식
}else if(writer.match(/^(\w+)@(\w+)[.](\w+)$/ig) == null){
alert("이메일 형식으로 입력하세요");
document.forms[0].writer.value="";
document.forms[0].writer.focus();
return false;
}
if(regdate== null || regdate==""){
alert("날짜를 입력하세요");
document.forms[0].regdate.focus();
return false;
//숫자가 8자리 일때만 true를 return 하는 표현식
}else if(regdate.match(/^\d\d\d\d\d\d\d\d+$/ig) == null){
alert("숫자형식(8자리)으로 입력하세요");
document.forms[0].regdate.value="";
document.forms[0].regdate.focus();
return false;
}
}
'IT > JSP' 카테고리의 다른 글
JSP 1일차 [계산기] (1) | 2015.08.11 |
---|---|
jsp 환경설정 (0) | 2015.07.09 |
다이얼로그 만드는 방법(jsp, 스프링, css, html) (0) | 2015.06.25 |
JSP 로깅설정(slf4j-api-1.7.2, log4j-1.2.17, slf4j-log4j12-1.7.2) (0) | 2015.02.27 |
JSP 오류메시지 모음 (0) | 2015.02.09 |