자바스크립트 날짜/시간 표현
자바스크립트와 제이쿼리로 Date객체를 사용해 날짜를 표현하는 방법입니다.
See the Pen NWrdYro by junheeleeme (@junheeleeme) on CodePen.
//Variables
const time_txt = document.querySelector('.time');
//functions
init();
function init(){
setInterval(()=>{
cnt_time();
}, 1000);
}
function cnt_time(){
const time = new Date();
const year = time.getFullYear();
const month = time.getMonth()+1;
const date = time.getDate();
const hour = time.getHours();
const min = time.getMinutes();
const sec = time.getSeconds();
time_txt.innerText = year + '년 ' + month + '월 '
+ date + '일 ' + hour + '시 ' + min + '분 ' +
sec + '초';
}
*참고사항
1. month의 경우 +1을 해주어야함.
2. 요일을 구할 때에는 .getDay()를 사용하는데, 0~6으로 값을 반환한다.
0 -> 일요일
1 -> 월요일
..