HTML年月日鬧鐘代碼
<html> <head> <title>HTML年月日鬧鐘</title> <script> function startTime() { var today = new Date(); var h = today.getHours(); var m = today.getMinutes(); var s = today.getSeconds(); var y = today.getFullYear(); var mo = today.getMonth()+1; var d = today.getDate(); m = checkTime(m); s = checkTime(s); document.getElementById('clock').innerHTML = y + "年" + mo + "月" + d + "日 " + h + ":" + m + ":" + s; var t = setTimeout(startTime, 1000); } function checkTime(i) { if (i < 10) {i = "0" + i}; // add zero in front of numbers < 10 return i; } </script> </head> <body onload="startTime()"> <h1>HTML年月日鬧鐘</h1> <p id="clock"></p> </body> </html>
以上是一個簡單的 HTML 年月日鬧鐘代碼。代碼中包含了 JavaScript 每秒鐘更新時間的功能,讓你的網頁看起來更加及時。你可以將代碼復制到你的 HTML 文件中,然后進行修改以適合你的需求。如果需要更加詳細的注釋和解釋,可以查看注釋中的代碼。
上一篇html彈窗加密代碼
下一篇vue cesium崩潰