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

ฉันจะรับวันที่ปัจจุบันใน JavaScript ได้อย่างไร


หากต้องการรับวันที่ปัจจุบันใน JavaScript ให้ใช้เมธอด getDate()

ตัวอย่าง

คุณสามารถลองเรียกใช้รหัสต่อไปนี้เพื่อรับวันที่:

<!DOCTYPE html>
<html>
   <body>
      <p>Today's Date</p>
      <button onclick="myFunction()">Get Date</button>
      <p id="test"></p>
       <script>
          function myFunction() {
             var date = new Date();
             var n = date.getDate();
             document.getElementById("test").innerHTML = n;
          }
       </script>
   </body>
</html>