본문 바로가기
Developer/Javascript & jQuery

[Javascript] 현재시간 및 시간차이 구하기

by 순수한소년 2017. 1. 28.
728x90
반응형
today = new Date();
var day = today.getDay(); 
var week;
if (day == 0) week = "일요일" ;
else if (day == 1) week = "월요일" ;
else if (day == 2) week = "화요일" ;
else if (day == 3) week = "수요일" ;
else if (day == 4) week = "목요일" ;
else if (day == 5) week = "금요일" ;
else if (day == 6) week = "토요일" ;

document.write("

") document.write("년도: "+today.getYear()+"
") document.write("월: "+(today.getMonth()+1)+"
") document.write("날짜: "+today.getDate()+"
") document.write("요일: "+week+"
") document.write("시: "+today.getHours()+"
") document.write("분: "+today.getMinutes()+"
") document.write("초: "+today.getSeconds()+"
") document.write("1970년 부터 경과된 시간(milliseconds): "+today.getTime()+"
") document.write("시간 문자열: "+today.toString()+"
") document.write("대한민국 시간: "+today.toLocaleString()+"
") document.write("GMT 시간: "+today.toGMTString()+"
") document.write("GMT 시간과의 차이(분): "+today.getTimezoneOffset()+"
") document.write("년도: "+today.getFullYear()) document.write("

")
결과
년도: 2017
월: 1
날짜: 28
요일: 토요일
시: 21
분: 6
초: 1
1970년 부터 경과된 시간(milliseconds): 1485605161073
시간 문자열: Sat Jan 28 21:06:01 UTC+0900 2017
대한민국 시간: 2017년 1월 28일 토요일 오후 9:06:01
GMT 시간: Sat, 28 Jan 2017 12:06:01 UTC
GMT 시간과의 차이(분): -540
년도: 2017



728x90
반응형