Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript의 Date.setDate() 함수

<시간/>

Date 객체는 JavaScript 언어에 내장된 데이터 유형입니다. Date 객체는 아래와 같이 새로운 Date( )로 생성됩니다.

Date 개체가 생성되면 여러 메서드를 사용하여 해당 개체에 대해 작업할 수 있습니다. 대부분의 방법을 사용하면 현지 시간이나 UTC(유니버설 또는 GMT) 시간을 사용하여 개체의 연도, 월, 일, 시, 분, 초 및 밀리초 필드를 가져오고 설정할 수 있습니다.

날짜 객체의 setDate() 함수는 월의 일을 나타내는 정수를 받아 현재 날짜를 수정/대체합니다.

구문

구문은 다음과 같습니다.

dateObj.setDate(5);

예시

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date('september 26, 89 12:4:25:96');
      document.write("Current date: "+dateObj.toUTCString());
      document.write("<br>");
      dateObj.setDate(1);
      document.write("Date after modification: "+dateObj.toUTCString());
   </script>
</body>
</html>

출력

Current date: Tue, 26 Sep 1989 06:34:25 GMT
Date after modification: Fri, 01 Sep 1989 06:34:25 GMTMT

예시

날짜 객체를 생성할 때 월의 날짜를 언급하지 않았지만 여전히 setDate() 함수를 사용하여 설정할 수 있습니다.

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date('August, 1989 00:4:00');
      document.write("<br>");
      dateObj.setDate(5)
      document.write(dateObj.toDateString());
   </script>
</body>
</html>

출력

Sat Aug 05 1989

예시

같은 방법으로 날짜 객체를 생성하는 동안 생성자에 값을 전달하지 않더라도 이 함수를 사용하여 날짜를 설정할 수 있으며 월 및 연도 값은 현재 날짜와 동일하게 유지됩니다.

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date();
      dateObj.setDate(2);
      document.write(dateObj.toDateString());
   </script>
</body>
</html>

출력

Tue Oct 02 2018

예시

이 기능을 사용하여 날짜를 0으로 설정하면 날짜는 전월 말일로 설정됩니다.

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date('23, August, 1989 00:4:00');
      document.write("<br>");
      dateObj.setDate(0);
      document.write(dateObj.toDateString());
   </script>
</body>
</html>

출력

Mon Jul 31 1989