날짜 형식 입력 받은 값 확인하기
<script language="javascript">
function gogogo() {
var ri = check_date(document.all.year.value,document.all.month.value,document.all.day.value)
if (ri == 0) {
alert('정상적인 형식');
} else if (ri == 1) {
alert('년(?)이 잘못 되었습니다');
} else if (ri == 2) {
alert('월이 잘못 되었습니다');
} else if (ri == 3) {
alert('일이 잘못 되었습니다');
}
}
function check_date(year, month, day) {
var dat_option = year % 4;
year = parseInt(year, 10);
month = parseInt(month, 10);
day = parseInt(day, 10);
if (isNaN(year) == true) { return 1; }
if (year < 1970) { return 1; }
if (isNaN(month) == true) { return 2; }
if (isNaN(day) == true) { return 3; }
if (day < 1 || day > 31) { return 3; }
if (month == 2) {
if (((dat_option == 0) && (day > 29)) || ((dat_option != 0) && (day > 28)) ) { return 3; }
} else if ((month == 4) ||
(month == 6) ||
(month == 9) ||
(month == 11)) {
if (day > 30) { return 3; }
} else if ((month == 1) ||
(month == 3) ||
(month == 5) ||
(month == 7) ||
(month == 8) ||
(month == 10) ||
(month == 12)) {
if (day > 31) { return 3; }
} else {
return 2;
}
return 0;
}
</script>
<input type="text" name="year"> 년
<input type="text" name="month"> 월
<input type="text" name="day"> 일
<input type="button" value="확인" onclick="gogogo();"><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]</div>
function gogogo() {
var ri = check_date(document.all.year.value,document.all.month.value,document.all.day.value)
if (ri == 0) {
alert('정상적인 형식');
} else if (ri == 1) {
alert('년(?)이 잘못 되었습니다');
} else if (ri == 2) {
alert('월이 잘못 되었습니다');
} else if (ri == 3) {
alert('일이 잘못 되었습니다');
}
}
function check_date(year, month, day) {
var dat_option = year % 4;
year = parseInt(year, 10);
month = parseInt(month, 10);
day = parseInt(day, 10);
if (isNaN(year) == true) { return 1; }
if (year < 1970) { return 1; }
if (isNaN(month) == true) { return 2; }
if (isNaN(day) == true) { return 3; }
if (day < 1 || day > 31) { return 3; }
if (month == 2) {
if (((dat_option == 0) && (day > 29)) || ((dat_option != 0) && (day > 28)) ) { return 3; }
} else if ((month == 4) ||
(month == 6) ||
(month == 9) ||
(month == 11)) {
if (day > 30) { return 3; }
} else if ((month == 1) ||
(month == 3) ||
(month == 5) ||
(month == 7) ||
(month == 8) ||
(month == 10) ||
(month == 12)) {
if (day > 31) { return 3; }
} else {
return 2;
}
return 0;
}
</script>
<input type="text" name="year"> 년
<input type="text" name="month"> 월
<input type="text" name="day"> 일
<input type="button" value="확인" onclick="gogogo();"><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]</div>
게시판 목록
퍼블리셔팁
퍼블리싱과 관련된 유용한 정보를 공유하세요.
질문은 상단의 QA에서 해주시기 바랍니다.
질문은 상단의 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 1097 | CSS | 8년 전 | 2185 | ||
| 1096 | CSS | 8년 전 | 2104 | ||
| 1095 | CSS | 8년 전 | 3596 | ||
| 1094 | CSS | 8년 전 | 2281 | ||
| 1093 | CSS | 8년 전 | 1503 | ||
| 1092 | CSS | 8년 전 | 1793 | ||
| 1091 | CSS | 8년 전 | 1957 | ||
| 1090 | CSS | 8년 전 | 1920 | ||
| 1089 | HTML | 8년 전 | 4417 | ||
| 1088 | CSS | 8년 전 | 1478 | ||
| 1087 | CSS | 8년 전 | 1605 | ||
| 1086 | CSS | 8년 전 | 1512 | ||
| 1085 | CSS | 8년 전 | 1533 | ||
| 1084 | CSS | 8년 전 | 1251 | ||
| 1083 | CSS | 8년 전 | 1062 | ||
| 1082 | CSS | 8년 전 | 2159 | ||
| 1081 | CSS | 8년 전 | 1961 | ||
| 1080 | CSS | 8년 전 | 1921 | ||
| 1079 | CSS | 8년 전 | 1971 | ||
| 1078 | CSS | 8년 전 | 1665 | ||
| 1077 | CSS | 8년 전 | 1687 | ||
| 1076 | CSS | 8년 전 | 2029 | ||
| 1075 | CSS | 8년 전 | 1883 | ||
| 1074 | CSS | 8년 전 | 1697 | ||
| 1073 | CSS | 8년 전 | 1543 | ||
| 1072 | CSS | 8년 전 | 1627 | ||
| 1071 | CSS | 8년 전 | 2026 | ||
| 1070 | CSS | 8년 전 | 1608 | ||
| 1069 | CSS | 8년 전 | 1845 | ||
| 1068 | CSS | 8년 전 | 1640 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기