<html>
<head>
<title>ok</title>
<script language=JavaScript>
<!--
function showtimes(){
var now=new Date();
var str="现在时间为:";
var year=now.getYear();
var month=now.getMonth()+1;
var day=now.getDate();
var hour=now.getHours();
var minutes=now.getMinutes();
var seconds=now.getSeconds();
str=str+year+"年";
str=str+month+"月";
str=str+day+"日 "
str=str+hour;
str=str+(minutes<10?":0":":")+minutes;
str=str+(seconds<10?":0":":")+seconds;
tim.innerHTML=str;
var ctimer=setTimeout('showtimes()',960);
}
//-->
</script>
</head>
<body onload="showtimes()">
<div class="showtimes" id="tim"></div>
</body>
</html>
<head>
<title>ok</title>
<script language=JavaScript>
<!--
function showtimes(){
var now=new Date();
var str="现在时间为:";
var year=now.getYear();
var month=now.getMonth()+1;
var day=now.getDate();
var hour=now.getHours();
var minutes=now.getMinutes();
var seconds=now.getSeconds();
str=str+year+"年";
str=str+month+"月";
str=str+day+"日 "
str=str+hour;
str=str+(minutes<10?":0":":")+minutes;
str=str+(seconds<10?":0":":")+seconds;
tim.innerHTML=str;
var ctimer=setTimeout('showtimes()',960);
}
//-->
</script>
</head>
<body onload="showtimes()">
<div class="showtimes" id="tim"></div>
</body>
</html>