time.js
上传用户:angela
上传日期:2022-05-11
资源大小:853k
文件大小:1k
源码类别:

外挂编程

开发平台:

ASP/ASPX

  1. document.write('<font size=2 color="#FFFF00">'); 
  2. var enabled = 0; today = new Date();
  3. var day; var date;
  4. if(today.getDay()==0) day = "星期日 "
  5. if(today.getDay()==1) day = "星期一 "
  6. if(today.getDay()==2) day = "星期二 "
  7. if(today.getDay()==3) day = "星期三 "
  8. if(today.getDay()==4) day = "星期四 "
  9. if(today.getDay()==5) day = "星期五 "
  10. if(today.getDay()==6) day = "星期六 "
  11. document.fgColor = " FF0072";
  12. date1 =(today.getYear()) + "年" + (today.getMonth() + 1 ) + "月" + today.getDate() + "日 " ;
  13. date2 = day ;
  14. document.write(date1.fontsize(2));
  15. document.write(date2.fontsize(2));
  16. document.write("<span id='clock'></span>");
  17. var now,hours,minutes,seconds,timeValue;
  18. function showtime(){
  19. now = new Date();
  20. hours = now.getHours();
  21. minutes = now.getMinutes();
  22. seconds = now.getSeconds();
  23. timeValue = (hours >= 12) ? "时间 " : "时间 ";
  24. timeValue += hours+ ":";
  25. timeValue += ((minutes < 10) ? "0" : "") + minutes + ":";
  26. timeValue += ((seconds < 10) ? "0" : "") + seconds + "";
  27. clock.innerHTML = timeValue;
  28. setTimeout("showtime()",100);
  29. }
  30. showtime();
  31. document.write('</font>');