obj_year.innerText=parseInt(num_year)+1; //年数增加 displayCalendar(obj_month.innerText-1,obj_year.innerText); } function plusyear() { var obj_year=document.getElementById("year"); var obj_month=document.getElementById("month"); var num_yea...[ 查看全文 ]
//************* 插入日期单元格 **************/ this.insertBodyCell=function(theRow,j,day,targetObject){ var theCell=theRow.insertCell(j); if(j==0) var theBgColor="#FF9999"; else var theBgColor="#FFFFFF"; if(day==calendar.currentDate) var theBgColor="#CCCCCC"; if(day==calendar.today) var theBgColor="#...[ 查看全文 ]