Español
<HTML> <HEAD> <TITLE>有用的中英文日历网页特效代码-downcodes.com</TITLE> <!--<script language="javascript" src="PopupCalendar.js" >>script>-- > <script> //más de downcodes.com function PopupCalendar(InstanceName) { ///Etiqueta global this.instanceName=InstanceName; ///Propiedades this.separator="-" this.oBtnTodayTitle="Hoy" this.oBtnCancelTitle="Cancelar" this.weekDaySting=new Array("S","M","T","W","T ","F","S"); this.monthSting=new Array("enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre" ,"Diciembre"); this.Ancho=200; this.currDate=nueva fecha(); this.today=nueva fecha(); this.startYear=1970; this.endYear=2010; ///Css this.divBorderCss="1px sólido #BCD0DE"; this.tableBorderColor="#CCCCCC" ///Método this.Init=CalendarInit; this.Fill=CalendarioRellenar; this.Refresh=CalendarioActualizar; this.Restore=RestaurarCalendario; ///HTMLObject this.oTaget=null; this.oPreviousCell=null; this.sDIVID=NombreDeInstancia+"oDiv"; this.sTABLEID=NombreDeInstancia+"oTable"; this.sMONTHID=NombreDeInstancia+"oMes"; this.sYEARID=NombreDeInstancia+"oAño"; } función CalendarInit() ///Crear panel { var sMonth,sYear sMonth=this.currDate.getMonth(); sAño=this.currDate.getAño(); htmlAll="<div id='"+this.sDIVID+"' style='display:none;position:absolute;width:"+this.Width+";border:"+this.divBorderCss+";padding:2px;fondo- color:#FFFFFF'>"; htmlAll+="<div align='center'>"; /// Mes htmloMonth="<select id='"+this.sMONTHID+"' onchange=CalendarMonthChange("+this.instanceName+") style='width:50%'>"; for(i=0;i<12;i++) { htmloMonth+="<option value='"+i+"'>"+this.monthSting[i]+"</option>"; } htmloMes+="</select>"; /// Año htmloYear="<select id='"+this.sYEARID+"' onchange=CalendarYearChange("+this.instanceName+") style='width:50%'>"; for(i=this.startYear;i<=this.endYear;i++) { htmloYear+="<option value='"+i+"'>"+i+"</option>"; } htmloAño+="</select></div>"; /// Día htmloDayTable="<table id='"+this.sTABLEID+"' width='100%' border=0 cellpadding=0 cellpacing=1 bgcolor='"+this.tableBorderColor+"'>"; htmloDayTable+="<tbody bgcolor='#ffffff'style='font-size:13px'>"; for(i=0;i<=6;i++) { if(i==0) htmloDayTable+="<tr bgcolor='#98B8CD'>"; else htmloDayTable+="<tr>"; for(j=0;j<7;j++) { if(i==0) { htmloDayTable+="<td height='20' align='center' valign='middle' style='cursor:hand'>" ; htmloDayTable+=this.weekDaySting[j]+"</td>" } else { htmloDayTable+="<td height='20' align='center' valign='middle' style='cursor:hand'"; htmloDayTable+=" onmouseover=CalendarCellsMsOver("+this.instanceName+""); htmloDayTable+=" onmouseout=CalendarCellsMsOut("+this.instanceName+""); htmloDayTable+=" onclick=CalendarCellsClick(this,"+this.instanceName+")>"; htmloDayTable+=" </td>" } } htmloDayTable+="</tr>"; } htmloDayTable+="</tbody></table>"; /// Botón Hoy htmloButton="<div align='center' style='padding:3px'>" htmloButton+="<button style='width:40%;border:1px solid #BCD0DE;background-color:#eeeeee ;cursor:hand'" htmloButton+=" onclick=CalendarTodayClick("+this.instanceName+")>"+this.oBtnTodayTitle+"</button> " htmloButton+="<button style='width:40%;border:1px solid # BCD0DE;background-color:#eeeeee;cursor:hand'" htmloButton+=" onclick=CalendarCancel("+this.instanceName+")>"+this.oBtnCancelTitle+"</button> " htmloButton+="</div>" // / Todo htmlTodo=htmlTodo+htmloMes+htmloAño+htmloDíaTable+htmloBotón+"</div>"; documento.write(htmlAll); this.Fill(); } function CalendarFill() /// { var sMonth,sYear,sWeekDay,sToday,oTable,currRow,MaxDay,sDaySn,sIndex,rowIndex,cellIndex,oSelectMonth,oSelectYear sMonth=this.currDate.getMonth(); sAño=this.currDate.getAño(); sWeekDay=(new Date(sAño,sMes,1)).getDay(); sHoy=this.currDate.getDate(); oTable=document.all[this.sTABLEID]; currRow=oTable.rows[1]; MaxDay=CalendarGetMaxDay(sAño,sMes); oSelectMonth=document.all[this.sMONTHID] oSelectMonth.selectedIndex=sMonth; oSelectYear=document.all[this.sYEARID] for(i=0;i<oSelectYear.length;i++) { if(parseInt(oSelectYear.options[i].value)==sYear)oSelectYear.selectedIndex=i; } //// for(sDaySn=1,sIndex=sWeekDay;sIndex<=6;sDaySn++,sIndex++) { if(sDaySn==sHoy) { currRow.cells[sIndex].innerHTML="<font color=red>< i><b>"+sDíaSn+"</b></i></font>"; this.oPreviousCell=currRow.cells[sIndex]; } else { currRow.cells[sIndex].innerHTML=sDaySn; currRow.cells[sIndex].style.color="#666666"; } CalendarCellSetCss(0,currRow.cells[sIndex]); } for(rowIndex=2;rowIndex<=6;rowIndex++) { if(sDaySn>MaxDay)break; currRow=oTable.rows[rowIndex]; for(cellIndex=0;cellIndex<currRow.cells.length;cellIndex++) { if(sDaySn==sToday) { currRow.cells[cellIndex].innerHTML="<font color=red><i><b>"+sDaySn+ "</b></i></font>"; this.oPreviousCell=currRow.cells[cellIndex]; } else { currRow.cells[cellIndex].innerHTML=sDaySn; currRow.cells[cellIndex].style.color="#666666"; } CalendarCellSetCss(0,currRow.cells[cellIndex]); sDíaSn++; if(sDaySn>MaxDay)descanso; } } } función CalendarRestore() /// Borrar datos { var oTable oTable=document.all[this.sTABLEID] for(i=1;i<oTable.rows.length;i++) { for(j=0;j< oTable.rows[i].cells.length;j++) { CalendarCellSetCss(0,oTable.rows[i].cells[j]); oTable.rows[i].cells[j].innerHTML=" "; } } } función CalendarRefresh(nuevaFecha) /// { this.currDate=nuevaFecha; this.Restore(); this.Fill(); } función CalendarCellsMsOver(oInstance) /// Cell MouseOver { var myCell myCell=event.srcElement; CalendarCellSetCss(0,oInstance.oPreviousCell); if(miCelda) { CalendarCellSetCss(1,miCelda); oInstance.oPreviousCell=miCelda; } } función CalendarCellsMsOut(oInstance) ////// Cell MouseOut { var myCell myCell=event.srcElement; CalendarCellSetCss(0,miCelda); } function CalendarCellsClick(oCell,oInstance) { var sDay,sMonth,sYear,newDate sYear=oInstance.currDate.getFullYear(); sMonth=oInstance.currDate.getMonth(); sDay=oInstance.currDate.getDate(); if(oCell.innerText!=" ") { sDay=parseInt(oCell.innerText); if(sDay!=oInstance.currDate.getDate()) { nuevaFecha=nueva Fecha(sAño,sMes,sDía); oInstancia.Refresh(nuevaFecha); } } sDateString=sAño+oInstance.separator+CalendarDblNum(sMes+1)+oInstance.separator+CalendarDblNum(sDía); ///return sDateString if(oInstance.oTaget.tagName=="INPUT") { oInstance.oTaget.value=sDateString; } document.all[oInstance.sDIVID].style.display="none"; } function CalendarYearChange(oInstance) /// Cambio de año { var sDay,sMonth,sYear,newDate sDay=oInstance.currDate.getDate(); sMonth=oInstance.currDate.getMonth(); sAño=document.all[oInstancia.sYEARID].value nuevaFecha=nueva Fecha(sAño,sMes,sDía); oInstancia.Refresh(nuevaFecha); } function CalendarMonthChange(oInstance) /// Cambio de mes { var sDay,sMonth,sYear,newDate sDay=oInstance.currDate.getDate(); sMonth=document.all[oInstance.sMONTHID].value sYear=oInstance.currDate.getYear(); nuevaFecha=nueva Fecha(sAño,sMes,sDía); oInstancia.Refresh(nuevaFecha); } función CalendarTodayClick(oInstance) /// Botón "Hoy" Cambiar { oInstance.Refresh(new Date()); } función getDateString(oInputSrc,oInstance) { if(oInputSrc&&oInstance) { CalendarDiv=document.all[oInstance.sDIVID]; oInstance.oTaget=oInputSrc; CalendarDiv.style.pixelLeft=CalendargetPos(oInputSrc,"Izquierda"); CalendarDiv.style.pixelTop=CalendargetPos(oInputSrc,"Top")+oInputSrc.offsetHeight; CalendarDiv.style.display=(CalendarDiv.style.display=="ninguno")?"":"ninguno"; } } función CalendarCellSetCss(sMode,oCell) /// Establecer celda Css { // sMode // 0: OnMouserOut 1: OnMouseOver if(sMode) { oCell.style.border="1px solid #5589AA"; oCell.style.backgroundColor="#BCD0DE"; } else { oCell.style.border="1px sólido #FFFFFF"; oCell.style.backgroundColor="#FFFFFF"; } } function CalendarGetMaxDay(nowYear,nowMonth) /// Obtener MaxDay del mes actual { var nextMonth,nextYear,currDate,nextDate,theMaxDay nextMonth=nowMonth+1; if(próximoMes>11) { próximoAño=ahoraAño+1; mes siguiente=0; } else { nextAño=ahoraAño; } currDate=nueva Fecha(ahoraAño,ahoraMes,1); fechapróxima=nueva fecha(añopróximo,mespróximo,1); theMaxDay=(nextDate-currDate)/(24*60*60*1000); devolver el MaxDay; } function CalendargetPos(el,ePro) /// Obtener posición absoluta { var ePos=0; while(el!=null) { ePos+=el["desplazamiento"+ePro]; el=el.offsetParent; } devolver ePos; } function CalendarDblNum(núm) { if(núm<10) return "0"+núm; en caso contrario devolver número; } función CalendarCancel(oInstance) ///Cancelar { CalendarDiv=document.all[oInstance.sDIVID]; CalendarDiv.style.display="ninguno"; } </script> </head> <BODY > <script > var oCalendarEn=new PopupCalendar("oCalendarEn"); //初始化控件时,请给出实例名称如:oCalendarEn oCalendarEn.Init(); var oCalendarChs=new PopupCalendar("oCalendarChs"); //初始化控件时,请给出实例名称:oCalendarChs oCalendarChs.weekDaySting=new Array("日","一","二","三","四","五","六"); oCalendarChs.monthSting=new Array("一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"); oCalendarChs.oBtnTodayTitle="今天"; oCalendarChs.oBtnCancelTitle="取消"; oCalendarChs.Init(); </script> <br><br><br><br> <input readonly type="text" name="dd" id="aa" onClick="getDateString(this,oCalendarEn)" value="Versión en inglés" > <br><br><br><br> <input readonly type="text" name="dd" id="aa" onClick="getDateString(this,oCalendarChs)" value="中文界面版"> < /CUERPO> </HTML>