js数字时钟

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js数字时钟相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<title>Digital Clock</title>
<style>
#clock{
font: bold 24pt sans;
background-color:#ddf;
padding:10px;
border:2px solid black;
border-radius:10px;
}
</style>

<script>
function displayTime(){
var elt = document.getElementById("clock");
var now = new Date();
elt.innerHTML = now.toLocaleTimeString();
/*toLocaleTimeString() 方法可根据本地时间把 Date 对象的时间部分转换为字符串,并返回结果。*/
setTimeout(displayTime,1000) /*每过一秒执行一次displayTime*/
}
window.onload = displayTime;
</script>
</head>

<body>
<h1>Digital Clock</h1>
<span id="clock"></span>
</body>
</html>

以上是关于js数字时钟的主要内容,如果未能解决你的问题,请参考以下文章

js数字滑动时钟

JS框架_(Vue.js)带有星期日期的数字时钟

js之数字时钟

js实现动态数字时钟

js数字时钟

js数字时钟