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
- 스크립트
- checbox
- jquery
- java
- html
- 전자정부 표준프레임워크
- 한글
- HTML5
- 톰캣
- maven
- 웹 플랫폼 설치 관리자
- json
- switch
- JSTL
- @RequestBody
- spring form tag
- 네이버스마트 에디터
- DB
- 날짜
- MYSQL
- 문자열
- exception
- Oracle
- php
- RADIO
- 이클립스
- SSL
- null
- 오라클
- 호환성
Archives
- Today
- Total
목록현재시간 (1)
개인적인 정리
현재시간
//현재시간var now = new Date(); var year= now.getFullYear(); var mon = (now.getMonth()+1)>9 ? ''+(now.getMonth()+1) : '0'+(now.getMonth()+1); var day = now.getDate()>9 ? ''+now.getDate() : '0'+now.getDate(); var hour = now.getHours()>9 ? ''+now.getHours() : '0'+now.getHours(); var min = now.getMinutes()>9 ? ''+now.getMinutes() : '0'+now.getMinutes(); var sec = now.getSeconds()>9 ? ''+now.getSeconds(..
Script & jQuery
2016. 8. 25. 10:33