本节内容:
javascript 时钟
如何用javascript实现一个简单的时钟效果呢?
请看下面的代码:
<html>
<head>
<title>JS简单时钟-www.jb200.com</title>
<script>
function displayTime() {
document.getElementById("time").innerHTML = new Date().toTimeString();
}
setInterval(displayTime,1000); // 每隔1秒钟调用displayTime函数
</script>
</head>
<body>
<p id="time"></p>
</body>
</html>
效果如下图:
>>>查看更多javascript 教程