Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- CVS
- MySQL
- 국민연금
- flash
- Administrator
- Eclipse
- 블로그 수익화
- samba
- 즐겨찾기 추가
- Vista
- oralce
- MSSQL
- Adobe pdf reader
- 블로그 방문자 늘리기
- 블로그 조회수
- JavaScript
- 블로그 조회수 늘리기
- 블루수국그림
- 인테리어그림
- HTML
- 소득세
- PHP
- 에덴미술
- 갑근세
- JSP
- IIS
- Jexcel
- CSS
- .NET
- Jrun
Archives
- Today
- Total
I LOVE EJ
자바스크립트 Date함수 YYYYMMDDHHMMSS 본문
var tmpYear =new Date().getFullYear().toString();
var tmpMonth =pad( new Date().getMonth()+1, 2);
var tmpDay =pad( new Date().getDate(), 2);
var tmpHourr =pad( new Date().getHours(), 2);
var tmpMin =pad( new Date().getMinutes(), 2);
var tmpSec =pad( new Date().getSeconds(), 2);
var nowDay = tmpYear+tmpMonth+tmpDay+tmpHourr+tmpMin+tmpSec;
function pad(number, length){
var str = number.toString();
while(str.length < length){
str = '0' + str;
}
return str;
}
'Web publishing > JavaScript' 카테고리의 다른 글
JavaScript의 KeyEvent에 따른 keycode (0) | 2016.10.12 |
---|---|
[자바스크립트] 스터디 (0) | 2014.02.27 |
모바일 웹 주소를 pc브라우저로 접속 시 pc버전의 사이트로 자동 변경 (1) | 2013.12.03 |
[js] 자바스크립트로 url 주소 가져오기 (1) | 2013.12.02 |
오른쪽 마우스 버튼 못쓰게 하기 (0) | 2011.02.16 |