黑马程序员技术交流社区
标题:
给大家分享一个js时钟的代码。
[打印本页]
作者:
谭威威威威
时间:
2015-8-5 14:25
标题:
给大家分享一个js时钟的代码。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>时间特效</title>
<script type="text/javascript">
function disptime(){
var today=new Date();
var hh = today.getHours();
var mm = today.getMinutes();
var ss = today.getSeconds();
document.getElementById("myclock").innerHTML ="<h1>现在是:"+ hh +":"+ mm +":"+ ss +"</h1>";
}
function interval(){
setInterval("disptime()",1000)
}
</script>
</head>
<body onload="interval()">
<div id="myclock"></div>
</body>
</html>
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2