|
<head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>无标题文档</title> </head>
<body> <span id="hxtime"></span> <script language="JavaScript"> function ShowTimes(){ var AfterTime= new Date("August 8 20:00:00 2008"); LeaveTime = AfterTime - new Date(); LeaveDays=Math.floor(LeaveTime/(1000*60*60*24));//天 LeaveHours=Math.floor(LeaveTime/(1000*60*60)%24);//时 LeaveMinutes=Math.floor(LeaveTime/(1000*60)%60);//分 LeaveSeconds=Math.floor(LeaveTime/1000%60);//秒 hxtime.innerHTML="距离2008北京奥运会"+LeaveDays+"天"+LeaveHours+"时"+LeaveMinutes+"分"+LeaveSeconds+"秒"; } setInterval(ShowTimes,1000); </script> </body> </html>
|