页面日历与24小时制的动态时钟

发布时间:2008年08月04日      浏览次数:1308 次
<body>
<span id="list_time"></span>
<script language="JavaScript">
<!-- Hide
var timerID = null
var timerRunning = false
function MakeArray(size){
       this.length = size;
       for(var i = 1; i <= size; i++){
             this[i] = "";
       }
       return this;
}
function stopclock (){
       if(timerRunning)
       clearTimeout(timerID);
       timerRunning = false
}
function showtime () {
       var now = new Date();
       var year = now.getYear();
       var month = now.getMonth() + 1;
       var date = now.getDate();
       var hours = now.getHours();
       var minutes = now.getMinutes();
       var seconds = now.getSeconds();
       var day = now.getDay();
       Day = new MakeArray(7);
       Day[0]="星期天";
       Day[1]="星期一";
       Day[2]="星期二";
       Day[3]="星期三";
       Day[4]="星期四";
       Day[5]="星期五";
       Day[6]="星期六";
       var timeValue = "";
       timeValue += year + "年";
       timeValue += ((month < 10) ? "0" : "") + month + "月";
       timeValue += date + "日 ";
       timeValue += (Day[day]) + " ";
       //timeValue += ((hours <= 12) ? hours : hours - 12); //12小时制
       timeValue += hours; //24小时制
       timeValue += ((minutes < 10) ? ":0" : ":") + minutes;
       timeValue += ((seconds < 10) ? ":0" : ":") + seconds;
       //timeValue += (hours < 12) ? "上午" : "下午"; //12小时制
       document.getElementById("list_time").innerHTML = timeValue;
       timerID = setTimeout("showtime()",1000);
       timerRunning = true
}
function startclock () {
       stopclock();
       showtime()
}
startclock(); //调用执行时钟函数
//-->
</script>
</body>
免责声明:本站相关技术文章信息部分来自网络,目的主要是传播更多信息,如果您认为本站的某些信息侵犯了您的版权,请与我们联系,我们会即时妥善的处理,谢谢合作!