Computer >> Máy Tính >  >> Lập trình >> Javascript

Định dạng ngày JavaScript

Để triển khai các định dạng ngày tháng trong JavaScript, mã như sau -

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;
}
</style>
</head>
<body>
<h1>Date Format</h1>
<div class="sample"></div>
<button class="Btn">CLICK HERE</button>
<h3>Click on the above button to see the different date formats</h3>
<script>
let fillEle = document.querySelector(".sample");
let date = [];
date.push(new Date('2020-01-20'));
date.push(new Date('2020-02'));
date.push(new Date('2020'));
date.push(new Date("2015-03-25T12:00:00Z"));
fillEle.innerHTML = date + '<br>';
document.querySelector(".Btn").addEventListener("click", () => {
   date.forEach(item=>{
      fillEle.innerHTML += item + '<br>'
    })
});
</script>
</body>
</html>

Đầu ra

Định dạng ngày JavaScript

Khi nhấp vào nút “BẤM VÀO ĐÂY” -

Định dạng ngày JavaScript