Các phương pháp đặt ngày trong JavaScript là -
Phương pháp | Mô tả |
---|---|
setDate () | Để đặt ngày dưới dạng số. |
setFullYear () () | Để thiết lập năm. |
setHours () () | Để đặt giờ. |
setMilliseconds () | Để đặt mili giây. |
setMinutes () | Để thiết lập biên bản. |
setMonth () | Để thiết lập tháng. |
setSeconds () | Để đặt giây. |
setTime () | Để thiết lập thời gian. |
Sau đây là mã cho các phương thức Ngày đã đặt -
Ví dụ
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .sample { font-size: 18px; font-weight: 500; color: red; } </style> </head> <body> <h1>JavaScript Set Date Methods</h1> <div class="sample"></div> <button class="Btn">CLICK HERE</button> <h3>Click on the above button to set Date and display it</h3> <script> let sampleEle = document.querySelector(".sample"); let date = new Date(); document.querySelector(".Btn").addEventListener("click", () => { date.setHours(11); sampleEle.innerHTML = "setHours(11) = " + date + "<br>"; date.setMonth(1); sampleEle.innerHTML += "setMonth(1) = " + date + "<br>"; date.setMinutes(20); sampleEle.innerHTML += "setMinutes(20) = " + date + "<br>"; date.setFullYear(1990); sampleEle.innerHTML += "setMinutes(1990) = " + date + "<br>"; }); </script> </body> </html>
Đầu ra
Khi nhấp vào nút “BẤM VÀO ĐÂY” -