JS网页时钟
Posted 动起来mygod
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS网页时钟相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JS显示与隐藏</title>
</head>
<body onload="startTime()">
<script type="text/javascript">
function getDate() {
var nowTime=new Date();
var strTime=nowTime.toLocaleString();
var a=document.getElementById("myDiv");
a.innerHTML=strTime;
}
function startTime() {
window.setInterval("getDate()",1000);
}
</script>
<div id="myDiv"></div>
</body>
</html>
以上是关于JS网页时钟的主要内容,如果未能解决你的问题,请参考以下文章