-
[javascript] 20. 날짜 메소드(Date Methods) - 자바스크립트 강좌 JS / CSEWeb/JavaScript 2015. 6. 13. 14:39JavaScript Date Methods1. Date Get Methods
Method Description getDate() Get the day as a number (1-31) getDay() Get the weekday as a number (0-6) getFullYear() Get the four digit year (yyyy) getHours() Get the hour (0-23) getMilliseconds() Get the milliseconds (0-999) getMinutes() Get the minutes (0-59) getMonth() Get the month (0-11) getSeconds() Get the seconds (0-59) getTime() Get the time (milliseconds since January 1, 1970) [ 출처: W3Schools ]
1-1. The getTime() MethodgetTime()는 1970년 1월 1일부터의 밀리초를 숫자로 반환합니다.1-2. The getFullYear() MethodgetFullYear()는 4 자리 수로 년도를 반환합니다.1234<script>var d = new Date();document.getElementById("demo").innerHTML = d.getFullYear();</script>cs 1-3. The getDay() MethodgetDay()는 주중의 날짜를 숫자(0 ~ 6)로 반환합니다.날짜 이름을 배열로 사용하여서 반환 할 수 있습니다.12345<script>var d = new Date();var days = ["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];document.getElementById("demo").innerHTML = days[d.getDay()];</script>cs 2. Date Set MethodsSet 메소드는 날짜의 일부를 설정하는데 사용됩니다.Method Description setDate() Set the day as a number (1-31) setFullYear() Set the year (optionally month and day yyyy.mm.dd) setHours() Set the hour (0-23) setMilliseconds() Set the milliseconds (0-999) setMinutes() Set the minutes (0-59) setMonth() Set the month (0-11) setSeconds() Set the seconds (0-59) setTime() Set the time (milliseconds since January 1, 1970) [ 출처: W3Schools ]
2-1. The setFullYear() MethodsetFullYear()는 특정 날짜를 날짜 객체로 설정합니다.12345<script>var d = new Date();d.setFullYear(2020, 0, 14);document.getElementById("demo").innerHTML = d;</script>cs 2-2. The setDate() MethodsetDate()는 일(1~31)을 설정합니다.12345<script>var d = new Date();d.setDate(20);document.getElementById("demo").innerHTML = d;</script>cs setDate()는 날짜를 더해서 사용 할 수도 있습니다.1234567891011121314151617<!DOCTYPE html><html><body><p>The setDate() method can be used to add days to a date.</p><p id="demo"></p><script>var d = new Date();d.setDate(d.getDate() + 50);document.getElementById("demo").innerHTML = d;</script></body></html>cs * 날짜를 더하게 되면, 년도와 달은 그에 맞게 이동하게 됩니다.3. Date Input - Parsing Dates값을 입력하면, Date.parse() 메소드를 통하여 밀리초 단위로 변환 할 수 있습니다.1234<script>var msec = Date.parse("March 21, 2012");document.getElementById("demo").innerHTML = msec;</script>cs 4. Compare Dates날짜는 쉽게 비교할 수 있습니다.1234567891011121314151617181920212223<!DOCTYPE html><html><body><p id="demo"></p><script>var today, someday, text;today = new Date();someday = new Date();someday.setFullYear(2100, 0, 14);if (someday > today) {text = "Today is before January 14, 2100.";} else {text = "Today is after January 14, 2100.";}document.getElementById("demo").innerHTML = text;</script></body></html>cs 'Web > JavaScript' 카테고리의 다른 글
[javascript] 23. 논리연산(Booleans) - 자바스크립트 강좌 JS / CSE (0) 2015.06.13 [javascript] 22. 배열 메소드(Array Method) - 자바스크립트 강좌 JS / CSE (0) 2015.06.13 [javascript] 21. 배열(Arrays) - 자바스크립트 강좌 (0) 2015.06.13 [javascript] 19. 날짜(Dates) - 자바스크립트 강좌 (0) 2015.06.13 [javascript] 18. Math - 자바스크립트 강좌 JS / CSE (0) 2015.06.13 [javascript] 17. Number Method - 자바스크립트 강좌 JS / CSE (0) 2015.06.13