加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
63.在屏幕打出时间.html 800 Bytes
一键复制 编辑 原始数据 按行查看 历史
hongmalong 提交于 2020-02-26 17:19 . 20200226_2 需求:数组
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>在屏幕打出当前时间</h1>
<hr>
<div id="nowDate"></div>
<script>
function printNowDate() {
now = new Date();
h = now.getHours();
m = now.getMinutes();
s = now.getSeconds();
m = shufficNum(m);
s =shufficNum(s);
document.getElementById("nowDate").innerHTML="nowDate is :"+h+":"+m+":"+s;
//document.write("nowDate is :"+h+":"+m+":"+s);
next=setTimeout(function () {
printNowDate();
}
,1000);
}
now=printNowDate();
function shufficNum(num) {
if (num <10){
num="0"+num;
}
return num;
}
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化