传说中最理想的日期时间

 代码
  1. <script language="JavaScript">    
  2. <!--   
  3. calendar = new Date();   
  4. day = calendar.getDay();   
  5. month = calendar.getMonth();   
  6. date = calendar.getDate();   
  7. year = calendar.getYear();   
  8. if (year< 100) year = 1900 + year;   
  9. cent = parseInt(year/100);   
  10. g = year % 19;   
  11. k = parseInt((cent - 17)/25);   
  12. i = (cent - parseInt(cent/4) - parseInt((cent - k)/3) + 19*g + 15) % 30;   
  13. i = i - parseInt(i/28)*(1 - parseInt(i/28)*parseInt(29/(i+1))*parseInt((21-g)/11));   
  14. j = (year + parseInt(year/4) + i + 2 - cent + parseInt(cent/4)) % 7;   
  15. l = i - j;   
  16. emonth = 3 + parseInt((l + 40)/44);    
  17. edate = l + 28 - 31*parseInt((emonth/4));   
  18. emonth--;   
  19. var dayname = new Array ("星期日""星期一""星期二""星期三""星期四""星期五""星期六");   
  20. var monthname =   
  21. new Array ("1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月" );   
  22. document.write("<font color=000080>"+year +"年");   
  23. document.write(monthname[month]);   
  24. document.write(date + "日"+" ");   
  25. document.write(dayname[day]+" "+"</font>");   
  26. // January(1月份节日,以下同。)   
  27. if ((month == 0) && (date == 1)) document.write("<br><center><font color=FF0000>今天是<元旦></font>");   
  28. if ((month == 0) && (date == 23)) document.write("<br><center><font color=FF0000>今天是<大年三十></font>");   
  29. if ((month == 0) && (date == 24)) document.write("<br><center><font color=FF0000>今天是<大年初一></font>");   
  30. if ((month == 2) && (date == 8)) document.write("<br><center><font color=FF0000>今天是<三八妇女节></font>");   
  31. if ((month == 4) && (date == 1)) document.write("<br><center><font color=FF0000>今天是<国际劳动节></font>");   
  32. if ((month == 4) && (date == 4)) document.write("<br><center><font color=FF0000>今天是<青年节></font>");   
  33. if ((month == 5) && (date == 1)) document.write("<br><center><font color=FF0000>今天是<国际儿童节></font>");   
  34. if ((month == 6) && (date == 1)) document.write("<br><center><font color=FF0000>今天是<党的生日></font>");   
  35. if ((month == 7) && (date == 1)) document.write("<br><center><font color=FF0000>今天是<建军节></font>");   
  36. if ((month == 11) && (date == 25)) document.write("<br><center><font color=FF0000>今天是<圣诞节></font>");   
  37. document.write("</font>");   
  38. //-->   
  39. </script>    
  40.   
  41. <script language="JavaScript">    
  42. <!--   
  43. document.write("<span id='clock'></span>");    
  44. var now,hours,minutes,seconds,timeValue;    
  45. function showtime(){   
  46. now = new Date();    
  47. hours = now.getHours();    
  48. minutes = now.getMinutes();    
  49. seconds = now.getSeconds();    
  50. timeValue = (hours >= 12) ? " 下午 " : " 上午 ";    
  51. timeValue += ((hours > 12) ? hours - 12 : hours) + " 点 ";    
  52. timeValue += ((minutes <10)?"0":"") + minutes+" 分 ";    
  53. timeValue += ((seconds <10)?"0":"") + seconds+" 秒 ";    
  54. clock.innerHTML = timeValue;    
  55. setTimeout("showtime()",100);    
  56. }    
  57. showtime();    
  58. //-->    
  59. </script>    

你可能感兴趣的:(JavaScript,J#)