일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- JavaScript
- ERD
- sql순위
- javascript 한글입력체크
- SPLIT
- injection
- VARIABLE
- FileSystemObject
- MSSQL보안
- 이미지가로길이
- 정규식
- join
- instr
- XML
- tempDB
- WML
- wap
- array
- inner join
- xmldom
- sql랭킹
- asp함수
- 한글입력체크
- update
- 인젝션
- jdbc driver
- 자바기초
- 이미지세로길이
- sql업데이트
- VarType
- Today
- Total
3초기억력
JavaScript - 날짜 검색시 유용한 팁 본문
시작일 : Start_Date, 2009-01-01
종료일 : End_Date, 2009-01-31
function SearchCheck(){
if(Document.SearchForm.Start_Date.value.length !=10){
alert("10자리의 날짜를 입력하셔야 합니다.");
Document.SearchForm.Start_Date.focus();
return ;
}
if(Document.SearchForm.End_Date.value.length !=10){
alert("10자리의 날짜를 입력하셔야 합니다.");
Document.SearchForm.End_Date.focus();
return ;
}
var s_str = Document.SearchForm.Star_Date.value;
var e_str = Document.SearchForm.End_Date.value;
var s_date = new Date( s_str.substring(0,4) , s_str.substring(5,7) , s_str.substring(8,10) );
var e_date = new Date( e_str.substring(0,4) , e_str.substring(5,7) , e_str.substring(8,10) );
// - 를 빼준다
var diff_date = e_date.getTime() - s_date.getTime();
// 차감일자
count = Math.floor( diff_date / (24*60*60*1000) );
// 차감숫자
if (count < 0 ){
alert("검색 시작일이 종료일보다 큽니다.\n확인해주시기 바랍니다.");
return;
}
if (count > 60){
alert("검색 속도로 인하여 60일 이상은 검색이 불가능합니다.");
return;
}
Document.SearchForm.submit();
}
'플밍_기타' 카테고리의 다른 글
ERwin 7.2 평가판 (4) | 2010.01.19 |
---|---|
엑셀뷰어 2007, Excel 2007 Viewer (0) | 2009.08.10 |
UTF-8 로 form 값 넘기기 (0) | 2008.11.26 |
폴더밑의 모든 서브폴더의 화일명을 나타내주는 명령어 (0) | 2008.11.18 |
동기화할 시간서버를 설정하는 방법 - 펌 (0) | 2008.11.18 |