HTML 當前時間代碼
<!DOCTYPE html> <html> <head> <title>當前時間</title> <script> function showTime() { var now = new Date(); var year = now.getFullYear(); var month = now.getMonth() + 1; var day = now.getDate(); var hours = now.getHours(); var minutes = now.getMinutes(); var seconds = now.getSeconds(); var timeStr = year + "-" + month + "-" + day + " " + hours + ":" + minutes + ":" + seconds; document.getElementById("currentTime").innerText = timeStr; setTimeout(showTime, 1000); // 每隔一秒執行 showTime 函數 } </script> </head> <body onload="showTime()"> <p>當前時間為: <span id="currentTime"></span></p> </body> </html>
以上是一個簡單的 HTML 代碼,可以在網頁上顯示當前時間。代碼中,我們使用了 JavaScript 中的 Date 對象獲取當前時間,然后將其轉換為字符串格式并顯示在網頁上。
在 HTML 中使用 JavaScript 不僅可以實現動態效果,還可以方便地操作網頁內容。希望大家能夠善用 HTML 和 JavaScript,創造出更加豐富多彩的網頁。