运行结果如下: 复制代码 代码如下: <BR>function choose_date_czw(date_id,objtd){<BR>if(date_id=="choose_date_czw_close"){<BR> document.getElementByIdx_x_x("choose_date_czw_id").style.display="none";<BR> return;<BR>}<BR>if(objtd!=undefined){<BR> if(objtd=="choose_date_czw_empty"){<BR> document.getElementByIdx_x_x(date_id).value="";<BR> }else{<BR> var year1 = document.getElementByIdx_x_x("choose_date_czw_year").value;<BR> var month1 = document.getElementByIdx_x_x("choose_date_czw_month").value;<BR> document.getElementByIdx_x_x(date_id).value=year1+"-"+month1+"-"+objtd.innerHTML;<BR> }<BR> document.getElementByIdx_x_x("choose_date_czw_id").style.display="none";<BR> return;<BR>}<BR>var nstr=new Date(); //当前<BR>if(document.getElementByIdx_x_x("choose_date_czw_year")!=null){<BR> var year = document.getElementByIdx_x_x("choose_date_czw_year").value;<BR> var month = document.getElementByIdx_x_x("choose_date_czw_month").value;<BR> var str=year+"/"+month+"/1";<BR> nstr=new Date(str); //当前<BR>}<BR>var ynow=nstr.getFullYear(); //年份<BR>var mnow=nstr.getMonth(); //月份<BR>var dnow=nstr.getDate(); //今日日期<BR>var n1str=new Date(ynow,mnow,1); //当月第一天<BR>var firstday=n1str.getDay(); //当月第一天星期几<BR>function is_leap(year) {<BR> return (year0==0 ? res=(year@0==0 ? 1 : 0) : res=(year%4==0 ? 1: 0));<BR>}<BR>var dstr="<select id=\"choose_date_czw_year\" onchange=\"choose_date_czw('"+date_id+"')\">";<BR>for(var y=1901;y<2050;y++){<BR> if(y==ynow){<BR> dstr+="<option value='"+y+"' selected>"+y+""<BR> }else{<BR> dstr+="<option value='"+y+"'>"+y+""<BR> }<BR>}<BR>dstr+=" <select id=\"choose_date_czw_month\" onchange=\"choose_date_czw('"+date_id+"')\">";<BR>for(var m=1;m<13;m++){<BR> if(parseInt(mnow+1)==m){<BR> dstr+="<option value='"+m+"' selected>"+m+""<BR> }else{<BR> dstr+="<option value='"+m+"'>"+m+""<BR> }<BR>}<BR>dstr+=" <span style='cursor:pointer;' onclick=\"choose_date_czw('choose_date_czw_close')\">关闭|<span style='cursor:pointer;' onclick=\"choose_date_czw('"+date_id+"','choose_date_czw_empty')\">清空";<BR>//一三五七八十腊(十二月),三十一日永不差;四六九冬(十一月)三十日,唯有二月二十八(闰年二十九).<BR>var m_days = new Array(31,28+is_leap(ynow),31,30,31,30,31,31,30,31,30,31);<BR>var tr_str=Math.ceil((m_days[mnow] + firstday)/7);<BR>dstr+="<table border='0' cellpadding='5' cellspacing='0'><tr><td>日<td>一<td>二<td>三<td>四<td>五<td>六";<BR>var dqdate=new Date(); //当前<BR>for(i=0;i<tr_str;i++) { //外层for语句- tr标签<BR> dstr+="<tr>";<BR> for(k=0;k<7;k++) { //内层for语句- td标签<BR> idx=i*7+k; //表格单元的自然序号<BR> date_str=idx-firstday+1; //计算日期<BR> if(date_str<=0 || date_str>m_days[mnow]){<BR> dstr+="<td> ";<BR> }else{<BR> if(ynow==dqdate.getFullYear() && mnow==dqdate.getMonth() && dqdate.getDate()==date_str){<BR> dstr+="<td onmouseover=\"this.style.backgroundColor='#6FF'\" onmouseout=\"this.style.backgroundColor='#fff'\" onclick=\"choose_date_czw('"+date_id+"',this)\" style='cursor:pointer; background-color:#6FF;'>"+date_str+"";<BR> }else{<BR> dstr+="<td onmouseover=\"this.style.backgroundColor='#6FF'\" onmouseout=\"this.style.backgroundColor='#fff'\" onclick=\"choose_date_czw('"+date_id+"',this)\" style='cursor:pointer;'>"+date_str+"";<BR> }<BR> }<BR> }<BR> dstr+="";<BR>}<BR>dstr+="";<BR>if(document.getElementByIdx_x_x("choose_date_czw_id")==null){<BR>var obj = document.getElementByIdx_x_x(date_id);<BR>var odiv = document_createElement_x_x("div");<BR>odiv.id="choose_date_czw_id";<BR>odiv.innerHTML=dstr;<BR>odiv.style.position="absolute";<BR>odiv.style.border="1px #0CF solid";<BR>odiv.style.fontSize="12px";<BR>odiv.style.zIndex=99999;<BR>odiv.style.top=obj.offsetTop+obj.offsetHeight+"px";<BR>odiv.style.left=obj.offsetLeft+"px";<BR>document.body.a(odiv);<BR>}else{<BR> document.getElementByIdx_x_x("choose_date_czw_id").style.display="block";<BR> document.getElementByIdx_x_x("choose_date_czw_id").innerHTML=dstr;<BR>}<BR>}<BR>