<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>使用JavaScript获取当前时间并显示出来</title>
</head>
<body>
<div id="timer"></div>
<script src="js/animation.js"></script>
</body>
</html>
// JavaScript Document
window.function(){
setInterval(function(){
var date=new Date();
var year=date.getFullYear(); //获取当前年份
var month=date.getMonth()+1; //获取当前月份
var dat=date.getDate(); //获取当前日
var day=date.getDay(); //获取当前星期几
var hour=date.getHours(); //获取小时
var minutes=date.getMinutes(); //获取分钟
var second=date.getSeconds(); //获取秒
var timer=document.getElementById('timer');
timer.innerHTML='当前时间:'+year+'年'+month+'月'+dat+'日'+'星期'+day+' '+hour+':'+minutes+':'+second; },1000) };