bgtime.js
上传用户:mingda
上传日期:2017-06-20
资源大小:27691k
文件大小:1k
源码类别:

OA系统

开发平台:

Java

  1. var timerID = null
  2. var timerRunning = false
  3. function MakeArray(size) {
  4.     this.length = size;
  5.     for(var i = 1; i <= size; i++)
  6.       {
  7.         this[i] = "";
  8.       }
  9.   return this;
  10. }
  11. function stopclock (){
  12.     if(timerRunning)
  13.     clearTimeout(timerID);
  14.     timerRunning = false
  15. }
  16. function showtime (){
  17.   var now = new Date();
  18.   var year = now.getYear();
  19.   var month = now.getMonth() + 1;
  20.   var date = now.getDate();
  21.   var hours = now.getHours();
  22.   var minutes = now.getMinutes();
  23.   var seconds = now.getSeconds();
  24.   var day = now.getDay();
  25.   Day = new MakeArray(7);
  26.   Day[0]="星期天";
  27.   Day[1]="星期一";
  28.   Day[2]="星期二";
  29.   Day[3]="星期三";
  30.   Day[4]="星期四";
  31.   Day[5]="星期五";
  32.   Day[6]="星期六";
  33.   var timeValue = "";
  34.   timeValue += year + "年";
  35.   timeValue += ((month < 10) ? "0" : "") + month + "月";
  36.   timeValue += date + "日  ";
  37.   timeValue += (Day[day]) + "  ";
  38.   //timeValue += ((hours <= 12) ? hours : hours - 12);  
  39.   timeValue += hours;
  40.   timeValue += ((minutes < 10) ? ":0" : ":") + minutes;
  41.   timeValue += ((seconds < 10) ? ":0" : ":") + seconds;
  42.   document.all.clock.innerText = timeValue;
  43.   timerID = setTimeout("showtime()",1000);
  44.   timerRunning = true
  45. }
  46. function startclock () {
  47.   stopclock();
  48.   showtime()
  49. }