﻿// JScript 文件

function Year_Month(){ 
    var now = new Date(); 
    var yy = now.getYear(); 
    var mm = now.getMonth(); 
	var mmm=new Array();
	mmm[0]="1月";
	mmm[1]="2月 ";
	mmm[2]="3月";
	mmm[3]="4月";
	mmm[4]="5月";
	mmm[5]="6月";
	mmm[6]="7月";
	mmm[7]="8月";
	mmm[8]="9月";
	mmm[9]="10月";
	mmm[10]="11月";
	mmm[11]="12月";
	mm=mmm[mm];
    return(mm ); }
function thisYear(){ 
    var now = new Date(); 
    //var yy = now.getYear(); 
    var yy = now.getFullYear();
    return(yy ); }
 function Date_of_Today(){ 
    var now = new Date(); 
    return(now.getDate() ); }
 function CurentTime()
 { 
    var now = new Date(); 
    var hh = now.getHours(); 
    var mm = now.getMinutes(); 
    var ss = now.getTime() % 60000; 
    ss = (ss - (ss % 1000)) / 1000; 
    var clock = hh+':'; 
    if (mm < 10) clock += '0'; 
    clock += mm+':'; 
    if (ss < 10) clock += '0'; 
    clock += ss; 
    return(clock); 
} 
    
function refreshCalendarClock()
{ 
    /*document.all.calendarClock1.innerHTML = Year_Month()
    document.all.calendarClock2.innerHTML = Date_of_Today()  + "日"; 
    document.all.calendarClock3.innerHTML =thisYear()  + "年"; 
    document.all.calendarClock4.innerHTML = CurentTime(); */
    
    
    document.getElementById("calendarClock1").innerHTML = Year_Month();
    document.getElementById("calendarClock2").innerHTML = Date_of_Today()  + "日"; 
    document.getElementById("calendarClock3").innerHTML = thisYear()  + "年"; 
    document.getElementById("calendarClock4").innerHTML = CurentTime(); 
}
