본문 바로가기
study/Javascript

[Javascript] 10. 날짜 관련 함수 (now, now.toString, now.toGMTString, now.toLocaleString, now.getYear, now.getFullYear, now.getMonth, now.getDate, now.getDay, now.getHours, now.getMinutes, now.getSeconds, now.getTime)

by 금이패런츠 2022. 4. 5.
728x90
반응형
<!-- src/main/webapp/20220404/dateex1.html -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Date 객체 예제</title>
</head>
<body>
<script type="text/javascript">
	now = new Date()
	document.write("now:", now, "<br>")
	document.write("now:", now.toString(), "<br>")
	document.write("표준시:", now.toGMTString(), "<br>") //영국 시간
	document.write("지역시:", now.toLocaleString(), "<br>") //지역 시간
	document.write("년도:", now.getYear(), "<br>") //년도
	document.write("년도:", now.getFullYear(), "<br>") //년도
	document.write("월(0~11):", now.getMonth()+1, "<br>") //월 +1을 해줘야 한다.
	document.write("일:", now.getDate(), "<br>") //일
	document.write("요일(0:일 ~ 6:토):",now.getDay(), "<br>") //요일
	document.write("시간:", now.getHours(), "<br>") //시간
	document.write("분:", now.getMinutes(), "<br>") //분
	document.write("초:", now.getSeconds(), "<br>") //초
	document.write("밀리초:", now.getTime(), "<br>") //1970년부터 지금까지의 시간
	
	//now 객체의 다음날로 설정하기
	now.setTime(now.getTime() + (1000 * 60 * 60 * 24))
	document.write("다음날:", now, "<br>")
	
	//2022년 12월 24일 날짜 설정하기
	date = new Date(2022, 12-1, 25)
	document.write("크리스마스:", date, "<br>")
</script>
</body>
</html>
728x90
반응형