实时刷新当前时间的js代码
本文将说明如何用纯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=GBK" />
<title>实时刷新当前时间的js代码</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<script type="text/javascript" language="javascript">
function nowTime() {
var data = new Date();
var hours = data.getHours();
var minutes = data.getMinutes();
var seconds = data.getSeconds();
var time ="";
time +=(hours > 12) ? "下午 ": "上午 ";
time += ((hours > 12) ? hours-12 : hours);
time += ((minutes <10) ? ":0" : ":") + minutes;
time += ((seconds <10) ? ":0" : ":") + seconds;
document.form1.theTime.value = time;
setTimeout("nowTime()",1000); //每秒钟刷新一次
}
</script>
</head>
<body onLoad="nowTime()">
<!-- 显示当前时间的表单 -->
<form name="form1" action="#" method="post">
<input type="text" name="theTime">
</form>
</body>
</html>
- 默认分类(20)
- J2EE(25)
- Java(56)
- PHP(55)
- SEO(10)
- 网页设计(20)
- 网站建设(37)
- 数据库(7)
- JavaScript(17)
- JQuery(6)
- MySQL(20)
- SQL Server(6)
- Access(1)
- Oracle(6)
- office(6)
- Dreamweaver(4)
- Photoshop(12)
- Flash(9)
- Fireworks(13)
- CSS(14)
- HTML(4)
- .NET(7)
- ASP(2)
- DB2(1)
- Ajax(2)
- Linux(12)
- Struts(7)
- Hibernate(8)
- Spring(2)
- Jsp(22)
- Asp(8)
- C#(3)
- C++(1)
- 网络安全(5)
- 软件工程(7)
- XML(1)
- English(2)
- 计算机等级考试(2)
- 计算机病毒(4)
- 个人日志(76)
- 互联网(15)
- ActionScript(10)
- Android(3)
- 数据结构与算法(1)
- 游戏策略(3)
- 美文翻译(2)
- 编程开发(19)
- 计算机应用(4)
- 计算机(10)
- Unity3d(6)
- 其他(1)
- egret(1)