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 |
Tags
- HTML5
- Oracle
- json
- 날짜
- switch
- jquery
- java
- 문자열
- 이클립스
- JSTL
- 호환성
- exception
- DB
- html
- 네이버스마트 에디터
- spring form tag
- 전자정부 표준프레임워크
- RADIO
- null
- php
- @RequestBody
- 스크립트
- 웹 플랫폼 설치 관리자
- 한글
- MYSQL
- checbox
- 톰캣
- 오라클
- SSL
- maven
Archives
- Today
- Total
개인적인 정리
현재시간 본문
//현재시간
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() : '0'+now.getSeconds();
var cur_time = year + mon + day + hour + min + sec ;
http://www.w3schools.com/jsref/jsref_obj_date.asp
'Script & jQuery' 카테고리의 다른 글
input radio (0) | 2016.11.04 |
---|---|
input type="submit" 에 커서 추가 (0) | 2016.09.20 |
숫자 체크 (0) | 2016.09.07 |
선택된 checkbox (0) | 2016.08.30 |
첨부파일 확장자 체크 (0) | 2016.08.30 |
checkbox 선택 ie9 (0) | 2016.08.30 |
radio 관련 (0) | 2016.08.25 |
display block, dispaly none (0) | 2016.08.25 |
Comments