JavaScript Date 對象 Date 對象用於處理日期與實際。 創建 Date 對象: var now = new Date(). <script type="text/javascript"> var span = document.getElementById("spandate"); ...
JavaScript Date 對象
Date 對象用於處理日期與實際。
創建 Date 對象:
var now = new Date().
方法 | 描述 |
---|---|
getDate() | 從 Date 對象返回一個月中的某一天 (1 ~ 31)。 |
getDay() | 從 Date 對象返回一周中的某一天 (0 ~ 6)。 |
getFullYear() | 從 Date 對象以四位數字返回年份。 |
getHours() | 返回 Date 對象的小時 (0 ~ 23)。 |
getMilliseconds() | 返回 Date 對象的毫秒(0 ~ 999)。 |
getMinutes() | 返回 Date 對象的分鐘 (0 ~ 59)。 |
getMonth() | 從 Date 對象返回月份 (0 ~ 11)。 |
getSeconds() | 返回 Date 對象的秒數 (0 ~ 59)。 |
setDate() | 設置 Date 對象中月的某一天 (1 ~ 31)。 |
setFullYear() | 設置 Date 對象中的年份(四位數字)。 |
setHours() | 設置 Date 對象中的小時 (0 ~ 23)。 |
setMilliseconds() | 設置 Date 對象中的毫秒 (0 ~ 999)。 |
setMinutes() | 設置 Date 對象中的分鐘 (0 ~ 59)。 |
setMonth() | 設置 Date 對象中月份 (0 ~ 11)。 |
setSeconds() | 設置 Date 對象中的秒鐘 (0 ~ 59)。 |
setTime() | setTime() 方法以毫秒設置 Date 對象。 |
<script type="text/javascript"> var span = document.getElementById("spandate"); var now = new Date(); var year = now.getFullYear();//年 var month = now.getMonth() + 1;//月 (註意:月份+1) var date = now.getDate();//日 if (month < 10) { month = "0" + month; } if (date < 10) { date = "0" + date; } span.innerText = year + "-" + month + "-" + date; </script>js 中獲取現在時間 年-月-日
2、實時顯示時間