Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

ฟังก์ชัน Date.setMonth() ใน JavaScript


ออบเจ็กต์ Date เป็นประเภทข้อมูลที่สร้างขึ้นในภาษา JavaScript วัตถุวันที่ถูกสร้างขึ้นด้วย Date( ) ใหม่ดังที่แสดงด้านล่าง

เมื่อสร้างออบเจ็กต์ Date ขึ้นแล้ว จะมีวิธีต่างๆ ให้คุณดำเนินการได้ เมธอดส่วนใหญ่อนุญาตให้คุณรับและตั้งค่าฟิลด์ปี เดือน วัน ชั่วโมง นาที วินาที และมิลลิวินาทีของอ็อบเจ็กต์ โดยใช้เวลาท้องถิ่นหรือเวลา UTC (สากลหรือ GMT)

ฟังก์ชัน setMonth() ของออบเจ็กต์ date ยอมรับจำนวนเต็มที่แสดงเดือนและแทนที่ค่าของเดือนในวันที่ปัจจุบันด้วย

ไวยากรณ์

ไวยากรณ์ของมันคือดังต่อไปนี้

dateObj.setMonth();

ตัวอย่าง

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date('September 26, 89 5:4:25:96');
      document.write("Current date: "+dateObj.toUTCString());
      document.write("<br>");
      dateObj.setMonth(9);
      document.write("Date after setting the month: "+dateObj.toUTCString());
   </script>
</body>
</html>

ผลลัพธ์

Current date: Mon, 25 Sep 1989 23:34:25 GMT
Date after setting the month: Wed, 25 Oct 1989 23:34:25 GMT

ตัวอย่าง

แม้ว่าคุณจะไม่ได้กล่าวถึงนาทีของวันในขณะที่สร้างวัตถุวันที่ แต่คุณยังคงสามารถตั้งค่าได้โดยใช้ฟังก์ชัน setMonth()

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date('1989 5:4:25:96');
      dateObj.setMonth(8);
      document.write(dateObj.toString());
   </script>
</body>
</html>

ผลลัพธ์

Fri Sep 01 1989 05:04:25 GMT+0530 (India Standard Time)

ตัวอย่าง

ในทำนองเดียวกัน แม้ว่าคุณจะไม่ส่งค่าใด ๆ ไปยังคอนสตรัคเตอร์ในขณะที่สร้างอ็อบเจ็กต์ date คุณยังสามารถตั้งค่า setMonth() โดยใช้ฟังก์ชันนี้และ thedate, year และ ค่าอื่น ๆ ยังคงเหมือนเดิมในวันที่ (และเวลา) .

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

ผลลัพธ์

Tue Sep 18 2018 22:13:48 GMT+0530 (India Standard Time)