在JavaScript中,可以使用Date
對象來獲取當前的年、月、日。根據需要,可以將其顯示在HTML頁面中。
下面是一個簡單的例子,展示了如何獲取當前的年月日并在HTML頁面中顯示出來:
<!DOCTYPE html>
<html>
<head>
<title>顯示當前年月日</title>
</head>
<body>
<h1>當前日期</h1>
<p id="date"></p>
<script>
// 創建一個新的Date對象
var currentDate = new Date();
// 獲取當前年份
var year = currentDate.getFullYear();
// 獲取當前月份(注意月份是從0開始計數的,所以要加1)
var month = currentDate.getMonth() + 1;
// 獲取當前日期
var day = currentDate.getDate();
// 將年月日拼接成字符串
var dateStr = year + '年' + month + '月' + day + '日';
// 將日期顯示在HTML頁面中
document.getElementById('date').textContent = dateStr;
</script>
</body>
</html>
在這個例子中,先使用new Date()
創建了一個新的Date
對象,然后通過調用getFullYear()
、getMonth()
和getDate()
方法分別獲取當前的年、月、日。最后,將年月日拼接成一個字符串,并將其顯示在頁面中的<p>
標簽中。
這樣,每次在打開這個頁面時,都會動態顯示當前的年月日。