您的位置:首页 > Web前端 > JavaScript

js实时显示系统时间

2010-05-14 15:45 337 查看
刚刚在做后台页面最上面要动态显示时间刚写了这个代码

将这段代码加入<head></head>

<!--时间显示代码 -->
<script>
function clockon(contentDate){
var now = new Date();
var year = now.getYear();
var month = now.getMonth();
var date = now.getDate();
var day = now.getDay();
var hour = now.getHours();
var minu = now.getMinutes();
var sec = now.getSeconds();
var week;
month = month+1;
if(month<10)month="0"+month;
if(date<10)date="0"+date;
if(hour<10)hour="0"+hour;
if(minu<10)minu="0"+minu;
if(sec<10)sec="0"+sec;
//var arr_week = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
//week = arr_week[day]; 这里显示星期几,我不用所以注释掉了
var time = "";
time = year+"-"+month+"-"+date+" "+hour+":"+minu+":"+sec;

//time = year+"-"+month+"-"+date+"week"+hour+":"+minu+":"+sec; 如果需要显示周几的话可以用这句代码
if(document.all){
contentDate.innerHTML=""+time+"" }
var timer = setTimeout("clockon(contentDate)",200);
}</script>
<!--时间显示代码 -->

需要显示时间的地方代码如下:<div align="right" id="contentDate" ></div>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: