note

날짜 간격을 구하는 방법 본문

JavaScript/기본

날짜 간격을 구하는 방법

투한 2012. 3. 15. 10:08








<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script>
	//변수를 선언합니다
	var now = new Date();
	var before = new Date('1991,12,9');
	
	//날짜 간격을 구합니다
	var interval = now.getTime() - before.getTime();
	
	//Math.floor 무조건 버림
	interval = Math.floor(interval / (1000 * 60 * 60 * 24));
	
	//출력합니다
	alert('Interval: '+interval + '일');
</script>
</head>
<body>

</body>
</html>


익스에선 안되서 크롬으로 실행