日期:2014-05-16 浏览次数:20460 次
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> New Document </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<style type="text/css">
#clock{
width:720px;
margin:0 auto;
text-align:left;
margin-top:30px;
}
</style>
<script type="text/JavaScript" language="JavaScript">
function $(id){
return document.getElementById(id);
}
function displayTime (){
$("clock").innerHTML="<b>"+(new Date()).toLocaleString()+"</b>";
}
function init(){
window.setInterval(displayTime,1000);
}
</script>
</head>
<body onload="init()">
<div id="clock"></div>
</body>
</html>