<script language=Javascript>
function time(){
var now=new Date()
var s="现在是"+now.getYear()
+"年"+(now.getMonth()+1)+"月"+now.getDate()
+"日"+now.getHours()+"时"+now.getMinutes()
+"分"+now.getSeconds()+"秒";
document.getElementById('date').innerHTML=s;
setTimeout(time,1000);
}
</script>
<body οnlοad="time()">
<div id="date"></div>
</body>
function time(){
var now=new Date()
var s="现在是"+now.getYear()
+"年"+(now.getMonth()+1)+"月"+now.getDate()
+"日"+now.getHours()+"时"+now.getMinutes()
+"分"+now.getSeconds()+"秒";
document.getElementById('date').innerHTML=s;
setTimeout(time,1000);
}
</script>
<body οnlοad="time()">
<div id="date"></div>
</body>