修改了梅花雨控件(支持小时和分钟选择)

    在asp.net的开发中,平时经常要用到日期的输入,现在虽然也有功能强大的asp.net控件,但还是觉得javascript的日期控件最方便和小巧。一般都是用著名的梅花雨控件。美中不足的是,梅花雨控件不能进行时间的输入,今天看了看代码,进行了改进,与大家分享。

   感谢梅花雨的原作者。感谢本控件的前任修改者“水边”!

   效果:

 

   代码如下:

ContractedBlock.gif ExpandedBlockStart.gif Code
  1<!--
  2ExpandedBlockStart.gifContractedBlock.gif/**//* 
  3*     本日历选择控件由“丁伟峰”(ddwwff@gmail.com)于2008.11.14,根据梅花雨日期控件,和前人经验完善而得。
  4*     修改的源码来源于“水边”(youbl@126.com)在2007.11.14发布的修改版,
  5*     在他的基础上,我增加了小时和分钟的选择,另外适当调整了界面效果
  6*     使用方法:
  7*     (1)只选择日期     
  8*     <input οnfοcus="calendar()" type="text" id="s2"/>
  9*     (2)选择日期和小时及分钟  
 10*     <input οnfοcus="calendarEx()" type="text" id="s2"/>
 11*/

 12
 13var cal_Width = 150;//定义日历显示的宽度,至少140
 14
 15document.write("<div id='meizzCalendarLayer' style='position: absolute; z-index: 9999; width: " + (cal_Width+4).toString() + "px; display: none'>");
 16document.write("<iframe name='meizzCalendarIframe' scrolling='no' frameborder='0' width='100%' height='100%'></iframe></div>");
 17
 18
 19function calendarEx()
 20ExpandedBlockStart.gifContractedBlock.gif{
 21    WebCalendar.timeShow = true;
 22    window.meizzCalendarLayer.style.height="218px";//定义日历显示的高度,如果有时间,建议是218
 23    baseCalendar();
 24}

 25
 26function calendar() 
 27ExpandedBlockStart.gifContractedBlock.gif{
 28    WebCalendar.timeShow = false;
 29    window.meizzCalendarLayer.style.height="193px";//定义日历显示的高度,如果只有日期,建议是195
 30    baseCalendar();
 31}

 32
 33function WebCalendar() //初始化日历的设置
 34ExpandedBlockStart.gifContractedBlock.gif{
 35    this.regInfo    = "梅花雨日期控件(ver3.5) 关闭的快捷键:[Esc]";
 36    
 37    this.dayShow    = 38;                       //定义页面上要显示的天数,不能小于35,或大于39
 38    this.daysMonth  = new Array(312831303130313130313031);
 39    this.day        = new Array(this.dayShow);            //定义日历展示用的数组
 40    this.dayObj     = new Array(this.dayShow);            //定义日期展示控件数组
 41    this.dateStyle  = null;                     //保存格式化后日期数组
 42    this.objExport  = null;                     //日历回传的显示控件
 43    this.eventSrc   = null;                     //日历显示的触发控件
 44    this.inputDate  = null;                     //转化外的输入的日期(d/m/yyyy)
 45    this.thisYear   = new Date().getFullYear(); //定义年的变量的初始值
 46    this.thisMonth  = new Date().getMonth()+ 1//定义月的变量的初始值
 47    this.thisDay    = new Date().getDate();     //定义日的变量的初始值
 48    this.thisHour   = new Date().getHours();
 49    this.thisMinute = new Date().getMinutes();
 50    this.today      = this.thisDay +"/"+ this.thisMonth +"/"+ this.thisYear;   //今天(d/m/yyyy)
 51    this.iframe     = window.frames("meizzCalendarIframe"); //日历的 iframe 载体
 52    this.calendar   = getObjectById("meizzCalendarLayer");  //日历的层
 53    this.dateReg    = "";           //日历格式验证的正则式
 54
 55    this.yearFall   = 50;           //定义显示的年份下拉框的年差值,如果今年是2000年,这里设置为50,就显示1950-2050
 56    this.format     = "yyyy-mm-dd"//回传日期的格式
 57    this.timeShow   = false;        //是否返回时间
 58    this.drag       = true;         //是否允许拖动
 59    this.darkColor  = "#95B7F3";    //控件的暗色
 60    this.lightColor = "#FFFFFF";    //控件的亮色
 61    this.btnBgColor = "#E6E6FA";    //控件的按钮背景色
 62    this.wordColor  = "#000080";    //控件的文字颜色
 63    this.wordDark   = "#DCDCDC";    //控件的暗文字颜色
 64    this.dayBgColor = "#F5F5FA";    //日期数字背景色
 65    this.todayColor = "#FF0000";    //今天在日历上的标示背景色
 66    this.DarkBorder = "#D4D0C8";    //日期显示的立体表达色
 67    
 68    this.yearOption = "";
 69    var yearNow = new Date().getFullYear();
 70    yearNow = (yearNow <= 1000)? 1000 : ((yearNow >= 9999)? 9999 : yearNow);
 71    var yearMin = (yearNow - this.yearFall >= 1000? yearNow - this.yearFall : 1000;
 72    var yearMax = (yearNow + this.yearFall <= 9999? yearNow + this.yearFall : 9999;
 73        yearMin = (yearMax == 9999? yearMax-this.yearFall*2 : yearMin;
 74        yearMax = (yearMin == 1000? yearMin+this.yearFall*2 : yearMax;
 75    for (var i=yearMin; i<=yearMax; i++this.yearOption += "<option value='"+i+"'>"+i+"年</option>";
 76}
   
 77
 78
 79var WebCalendar = new WebCalendar();
 80
 81function document.onclick()
 82ExpandedBlockStart.gifContractedBlock.gif{
 83    if(WebCalendar.eventSrc != window.event.srcElement) hiddenCalendar();
 84}

 85
 86function writeIframe()
 87ExpandedBlockStart.gifContractedBlock.gif{
 88    var strIframe = "<html><head><meta http-equiv='Content-Type' content='text/html; charset=gb2312'><style>"+
 89    "*{font-size: 12px; font-family: 宋体}"+
 90    ".bg{  color: "+ WebCalendar.lightColor +"; cursor: default; background-color: "+ WebCalendar.darkColor +";}"+
 91    "table#tableMain{ width: "+ (cal_Width+2).toString() +"px; height: 180px;}"+
 92    "table#tableWeek td{ width:14%;color: "+ WebCalendar.lightColor +";}"+
 93    "table#tableDay  td{ width:14%;font-weight: bold;}"+
 94    "td#meizzYearHead, td#meizzYearMonth{color: "+ WebCalendar.wordColor +"}"+
 95    ".out { text-align: center; border-top: 1px solid "+ WebCalendar.DarkBorder +"; border-left: 1px solid "+ WebCalendar.DarkBorder +";"+
 96    "border-right: 1px solid "+ WebCalendar.lightColor +"; border-bottom: 1px solid "+ WebCalendar.lightColor +";}"+
 97    ".over{ text-align: center; border-top: 1px solid #FFFFFF; border-left: 1px solid #FFFFFF;"+
 98    "border-bottom: 1px solid "+ WebCalendar.DarkBorder +"; border-right: 1px solid "+ WebCalendar.DarkBorder +"}"+
 99    "input{ border: 1px solid "+ WebCalendar.darkColor +"; padding-top: 1px; height: 18px; cursor: hand;"+
100    "       color:"+ WebCalendar.wordColor +"; background-color: "+ WebCalendar.btnBgColor +"}"+
101    "</style></head><body onselectstart='return false' style='margin: 0px' οncοntextmenu='return false'><form name=meizz>";
102
103ExpandedSubBlockStart.gifContractedSubBlock.gif    if (WebCalendar.drag){ strIframe += "<scr"+"ipt language=javascript>"+
104    "var drag=false, cx=0, cy=0, o = parent.WebCalendar.calendar; function document.onmousemove(){"+
105    "if(parent.WebCalendar.drag && drag){if(o.style.left=='')o.style.left=0; if(o.style.top=='')o.style.top=0;"+
106    "o.style.left = parseInt(o.style.left) + window.event.clientX-cx;"+
107    "o.style.top  = parseInt(o.style.top)  + window.event.clientY-cy;}}"+
108    "function document.onkeydown(){ switch(window.event.keyCode){  case 27 : parent.hiddenCalendar(); break;"+
109    "case 37 : parent.prevM(); break; case 38 : parent.prevY(); break; case 39 : parent.nextM(); break; case 40 : parent.nextY(); break;"+
110    "case 84 : document.forms[0].today.click(); break;} " +
111    "try{window.event.keyCode = 0; window.event.returnValue= false;}catch(ee){}}"+
112    "function dragStart(){cx=window.event.clientX; cy=window.event.clientY; drag=true;}</scr"+"ipt>"}

113
114    strIframe += "<table id=tableMain class=bg border=0 cellspacing=2 cellpadding=0>"+
115    "<tr><td width='"+ cal_Width +"px' height='19px' bgcolor='"+ WebCalendar.lightColor +"'>"+
116    "    <table width='"+ cal_Width +"px' id='tableHead' border='0' cellspacing='1' cellpadding='0'><tr align='center'>"+
117    "    <td width='10%' height='19px' class='bg' title='向前翻 1 月快捷键:←' style='cursor: hand' οnclick='parent.prevM()'><b>&lt;</b></td>"+
118    "    <td width='45%' id=meizzYearHead "+
119    "        οnmοuseοver='this.bgColor=parent.WebCalendar.darkColor; this.style.color=parent.WebCalendar.lightColor'"+
120    "        οnmοuseοut='this.bgColor=parent.WebCalendar.lightColor; this.style.color=parent.WebCalendar.wordColor'>" + 
121    "<select name=tmpYearSelect  οnblur='parent.hiddenSelect(this)' style='width:100%;'"+
122    "        οnchange='parent.WebCalendar.thisYear =this.value; parent.hiddenSelect(this); parent.writeCalendar();'>";
123    
124    strIframe += WebCalendar.yearOption + "</select>"+
125    "</td>"+
126    "    <td width='35%' id=meizzYearMonth "+
127    "        οnmοuseοver='this.bgColor=parent.WebCalendar.darkColor; this.style.color=parent.WebCalendar.lightColor'"+
128    "        οnmοuseοut='this.bgColor=parent.WebCalendar.lightColor; this.style.color=parent.WebCalendar.wordColor'>" +
129    "<select name=tmpMonthSelect οnblur='parent.hiddenSelect(this)' style='width:100%;'" +    
130    "        οnchange='parent.WebCalendar.thisMonth=this.value; parent.hiddenSelect(this); parent.writeCalendar();'>";
131    for (var i=1; i<13; i++) strIframe += "<option value='"+i+"'>"+i+"月</option>";
132    strIframe += "</select>"+
133    "</td>"+
134    "    <td width='10%' class=bg title='向后翻 1 月快捷键:→' οnclick='parent.nextM()' style='cursor: hand'><b>&gt;</b></td></tr></table>"+
135    "</td></tr>";
136    if (WebCalendar.timeShow)
137ExpandedSubBlockStart.gifContractedSubBlock.gif    {
138        //小时
139        strIframe += "<tr><td><table width=100%><tr>"+
140        "    <td width='50%' id=meizzHour "+
141        "        οnmοuseοver='this.bgColor=parent.WebCalendar.darkColor; this.style.color=parent.WebCalendar.lightColor'"+
142        "        οnmοuseοut='this.bgColor=parent.WebCalendar.lightColor; this.style.color=parent.WebCalendar.wordColor'>" +
143        "<select name=tmpHourSelect οnblur='parent.hiddenSelect(this)' style='width:100%;'" +    
144        "        οnchange='parent.WebCalendar.thisHour=this.value; parent.hiddenSelect(this); parent.writeCalendar();'>";
145        for (var i=0; i<24; i++) strIframe += "<option value='"+i+"'>"+i+"点</option>";
146        strIframe += "</select></td>";
147
148        //分钟
149        strIframe += "<td width='50%' id=meizzMinute "+
150        "        οnmοuseοver='this.bgColor=parent.WebCalendar.darkColor; this.style.color=parent.WebCalendar.lightColor'"+
151        "        οnmοuseοut='this.bgColor=parent.WebCalendar.lightColor; this.style.color=parent.WebCalendar.wordColor'>" +
152        "<select name=tmpMinuteSelect οnblur='parent.hiddenSelect(this)' style='width:100%;'" +    
153        "        οnchange='parent.WebCalendar.thisMinute=this.value; parent.hiddenSelect(this); parent.writeCalendar();'>";
154        for (var i=0; i<60; i++) strIframe += "<option value='"+i+"'>"+i+"分</option>";
155        strIframe += "</select></td>";
156        strIframe += "</tr></table></td></tr>";
157    }

158    
159    strIframe += "<tr><td height='20px'>"+
160    "<table id=tableWeek border=0 width='"+ cal_Width +"px' cellpadding=0 cellspacing=0 ";
161ExpandedSubBlockStart.gifContractedSubBlock.gif    if(WebCalendar.drag){strIframe += "οnmοusedοwn='dragStart()' οnmοuseup='drag=false' ";}
162    strIframe += ">"+
163    "    <tr align=center><td height='20px'>日</td><td>一</td><td>二</td><td>三</td><td>四</td><td>五</td><td>六</td></tr></table>"+
164    "</td></tr><tr><td valign=top width='"+ cal_Width +"px' bgcolor='"+ WebCalendar.lightColor +"'>"+
165    "    <table id=tableDay height='120px' width='"+ cal_Width +"px' border=0 cellspacing=0 cellpadding=0>";
166ExpandedSubBlockStart.gifContractedSubBlock.gif         for(var x=0; x<5; x++){
167           strIframe += "<tr>";
168           for(var y=0; y<7; y++)
169             strIframe += "<td class=out id='meizzDay"+ (x*7+y) +"'></td>"
170           strIframe += "</tr>";
171         }

172         strIframe += "<tr>";
173         for(var x=35; x<WebCalendar.dayShow; x++)
174           strIframe += "<td class=out id='meizzDay"+ x +"'></td>";
175         strIframe +="<td colspan="+(42-WebCalendar.dayShow).toString()+" class=out style='text-align:center;' title='"+ WebCalendar.regInfo +"'>" + 
176         "<input style=' background-color: " + WebCalendar.btnBgColor +";cursor: hand; padding-top: 2px; width: 44%; height: 100%;' οnfοcus='this.blur()'"+
177         " type=button value='清空' οnclick='parent.WebCalendar.objExport.value=\"\";parent.hiddenCalendar()'>" + 
178         "&nbsp;" + 
179         "<input style=' background-color: " + WebCalendar.btnBgColor +";cursor: hand; padding-top: 2px; width: 43%; height: 100%;' οnfοcus='this.blur()'"+
180         " type=button value='关闭' οnclick='parent.hiddenCalendar()'>" + 
181         "</td></tr></table>"+
182    "</td></tr><tr><td height='20px' width='"+ cal_Width +"px' bgcolor='"+ WebCalendar.lightColor +"'>"+
183    "    <table border=0 cellpadding=1 cellspacing=0 width='"+ cal_Width +"px'>"+
184    "    <tr><td><input name=prevYear title='向前翻 1 年快捷键:↑' οnclick='parent.prevY()' type=button value='&lt;&lt;'"+
185    "    οnfοcus='this.blur()' style='meizz:expression(this.disabled=parent.WebCalendar.thisYear==1000)'><input"+
186    "    οnfοcus='this.blur()' name=prevMonth title='向前翻 1 月快捷键:←' οnclick='parent.prevM()' type=button value='&lt;&nbsp;'>"+
187    "    </td><td align=center><input name=today type=button value='Today' οnfοcus='this.blur()' style='width: 50px;' title='当前日期快捷键:T'"+
188    "    οnclick=\"parent.returnDate(new Date().getDate() +'/'+ (new Date().getMonth() +1+'/'+ new Date().getFullYear())\">"+
189    "    </td><td align=right><input title='向后翻 1 月快捷键:→' name=nextMonth οnclick='parent.nextM()' type=button value='&nbsp;&gt;'"+
190    "    οnfοcus='this.blur()'><input name=nextYear title='向后翻 1 年快捷键:↓' οnclick='parent.nextY()' type=button value='&gt;&gt;'"+
191    "    οnfοcus='this.blur()' style='meizz:expression(this.disabled=parent.WebCalendar.thisYear==9999)'></td></tr></table>"+
192    "</td></tr><table></form></body></html>";
193    with(WebCalendar.iframe)
194ExpandedSubBlockStart.gifContractedSubBlock.gif    {
195        document.writeln(strIframe); document.close();
196        for(var i=0; i<WebCalendar.dayShow; i++)
197ExpandedSubBlockStart.gifContractedSubBlock.gif        {
198            WebCalendar.dayObj[i] = eval("meizzDay"+ i);
199            WebCalendar.dayObj[i].onmouseover = dayMouseOver;
200            WebCalendar.dayObj[i].onmouseout  = dayMouseOut;
201            WebCalendar.dayObj[i].onclick     = returnDate;
202        }

203    }

204}

205
206function baseCalendar()//主调函数
207ExpandedBlockStart.gifContractedBlock.gif{   
208    var e = window.event.srcElement; 
209    writeIframe();
210    var o = WebCalendar.calendar.style; WebCalendar.eventSrc = e;
211    if (arguments.length == 0) WebCalendar.objExport = e;
212    else WebCalendar.objExport = eval(arguments[0]);
213
214    WebCalendar.iframe.tableWeek.style.cursor = WebCalendar.drag ? "move" : "default";
215    var t = e.offsetTop,  h = e.clientHeight, l = e.offsetLeft, p = e.type;
216ExpandedSubBlockStart.gifContractedSubBlock.gif    while (e = e.offsetParent){t += e.offsetTop; l += e.offsetLeft;}
217    o.display = ""; WebCalendar.iframe.document.body.focus();
218    var cw = WebCalendar.calendar.clientWidth, ch = WebCalendar.calendar.clientHeight;
219    var dw = document.body.clientWidth, dl = document.body.scrollLeft, dt = document.body.scrollTop;
220    
221    if (document.body.clientHeight + dt - t - h >= ch) o.top = (p=="image")? t + h : t + h + 6;
222    else o.top  = (t - dt < ch) ? ((p=="image")? t + h : t + h + 6) : t - ch;
223    if (dw + dl - l >= cw) o.left = l; else o.left = (dw >= cw) ? dw - cw + dl : dl;
224
225ExpandedSubBlockStart.gifContractedSubBlock.gif    if  (!WebCalendar.timeShow) WebCalendar.dateReg = /^(\d{1,4})(-|\/)(\d{1,2})\2(\d{1,2})$/;
226ExpandedSubBlockStart.gifContractedSubBlock.gif    else WebCalendar.dateReg = /^(\d{1,4})(-|\/)(\d{1,2})\2(\d{1,2}) (\d{1,2}):(\d{1,2}):(\d{1,2})$/;
227
228ExpandedSubBlockStart.gifContractedSubBlock.gif    try{
229ExpandedSubBlockStart.gifContractedSubBlock.gif        if (WebCalendar.objExport.value.trim() != ""){
230            WebCalendar.dateStyle = WebCalendar.objExport.value.trim().match(WebCalendar.dateReg);
231            if (WebCalendar.dateStyle == null)
232ExpandedSubBlockStart.gifContractedSubBlock.gif            {
233                WebCalendar.thisYear   = new Date().getFullYear();
234                WebCalendar.thisMonth  = new Date().getMonth()+ 1;
235                WebCalendar.thisDay    = new Date().getDate();
236                alert("原文本框里的日期有错误!\n可能与你定义的显示时分秒有冲突!");
237                writeCalendar(); return false;
238            }

239            else
240ExpandedSubBlockStart.gifContractedSubBlock.gif            {
241                WebCalendar.thisYear   = parseInt(WebCalendar.dateStyle[1], 10);
242                WebCalendar.thisMonth  = parseInt(WebCalendar.dateStyle[3], 10);
243                WebCalendar.thisDay    = parseInt(WebCalendar.dateStyle[4], 10);
244                WebCalendar.thisHour   = parseInt(WebCalendar.dateStyle[5], 10);
245                WebCalendar.thisMinute = parseInt(WebCalendar.dateStyle[6], 10);
246                WebCalendar.inputDate  = parseInt(WebCalendar.thisDay, 10+"/"+ parseInt(WebCalendar.thisMonth, 10+"/"+parseInt(WebCalendar.thisYear, 10); writeCalendar();
247            }

248ExpandedSubBlockStart.gifContractedSubBlock.gif        }
 else {
249          WebCalendar.thisYear   = new Date().getFullYear();
250          WebCalendar.thisMonth  = new Date().getMonth()+ 1;
251          WebCalendar.thisDay    = new Date().getDate();
252          WebCalendar.thisHour   = new Date().getHours();
253          WebCalendar.thisMinute = new Date().getMinutes();
254          writeCalendar();
255        }

256ExpandedSubBlockStart.gifContractedSubBlock.gif    }
 catch(e) {
257      WebCalendar.thisYear   = new Date().getFullYear();
258      WebCalendar.thisMonth  = new Date().getMonth()+ 1;
259      WebCalendar.thisDay    = new Date().getDate();
260      WebCalendar.thisHour   = new Date().getHours();
261      WebCalendar.thisMinute = new Date().getMinutes();
262      writeCalendar();
263    }

264}

265
266function funMonthSelect() //月份的下拉框
267ExpandedBlockStart.gifContractedBlock.gif{
268    var m = isNaN(parseInt(WebCalendar.thisMonth, 10)) ? new Date().getMonth() + 1 : parseInt(WebCalendar.thisMonth);
269    var e = WebCalendar.iframe.document.forms[0].tmpMonthSelect;
270    e.value = m; //e.focus(); 
271    //window.status = e.style.left;
272}

273
274function funYearSelect() //年份的下拉框
275ExpandedBlockStart.gifContractedBlock.gif{
276    var e = WebCalendar.iframe.document.forms[0].tmpYearSelect;
277    var y = isNaN(parseInt(WebCalendar.thisYear, 10)) ? new Date().getFullYear() : parseInt(WebCalendar.thisYear);
278    e.value = y; //e.focus();
279//    if(e.value == "")
280//    {
281//      e.value = new Date().getFullYear();
282//      WebCalendar.thisYear = e.value;
283//    }
284}

285
286function funHourSelect() //小时的下拉框
287ExpandedBlockStart.gifContractedBlock.gif{
288    var e = WebCalendar.iframe.document.forms[0].tmpHourSelect;
289    var h = isNaN(parseInt(WebCalendar.thisHour, 10)) ? new Date().getHours() : parseInt(WebCalendar.thisHour);
290    e.value = h; //e.focus();
291}

292function funMinuteSelect() //分钟的下拉框
293ExpandedBlockStart.gifContractedBlock.gif{
294    var e = WebCalendar.iframe.document.forms[0].tmpMinuteSelect;
295    var m = isNaN(parseInt(WebCalendar.thisMinute, 10)) ? new Date().getMinutes() : parseInt(WebCalendar.thisMinute);
296    e.value = m; //e.focus();
297}

298
299function prevM()  //往前翻月份
300ExpandedBlockStart.gifContractedBlock.gif{
301    WebCalendar.thisDay = 1;
302    if (WebCalendar.thisMonth==1)
303ExpandedSubBlockStart.gifContractedSubBlock.gif    {
304        WebCalendar.thisYear--;
305        WebCalendar.thisMonth=13;
306    }

307    WebCalendar.thisMonth--; writeCalendar();
308}

309
310function nextM()  //往后翻月份
311ExpandedBlockStart.gifContractedBlock.gif{
312    WebCalendar.thisDay = 1;
313    if (WebCalendar.thisMonth==12)
314ExpandedSubBlockStart.gifContractedSubBlock.gif    {
315        WebCalendar.thisYear++;
316        WebCalendar.thisMonth=0;
317    }

318    WebCalendar.thisMonth++; writeCalendar();
319}

320ExpandedBlockStart.gifContractedBlock.giffunction prevY(){WebCalendar.thisDay = 1; WebCalendar.thisYear--; writeCalendar();}//往前翻 Year
321ExpandedBlockStart.gifContractedBlock.giffunction nextY(){WebCalendar.thisDay = 1; WebCalendar.thisYear++; writeCalendar();}//往后翻 Year
322ExpandedBlockStart.gifContractedBlock.giffunction hiddenSelect(e){
323  //for(var i=e.options.length; i>-1; i--)e.options.remove(i); e.style.display="none";
324}

325ExpandedBlockStart.gifContractedBlock.giffunction getObjectById(id)if(document.all) return(eval("document.all."+ id)); return(eval(id)); }
326ExpandedBlockStart.gifContractedBlock.giffunction hiddenCalendar(){getObjectById("meizzCalendarLayer").style.display = "none";};
327ExpandedBlockStart.gifContractedBlock.giffunction appendZero(n){return(("00"+ n).substr(("00"+ n).length-2));}//日期自动补零程序
328ExpandedBlockStart.gifContractedBlock.giffunction String.prototype.trim(){return this.replace(/(^\s*)|(\s*$)/g,"");}
329function dayMouseOver()
330ExpandedBlockStart.gifContractedBlock.gif{
331    this.className = "over";
332    this.style.backgroundColor = WebCalendar.darkColor;
333    if(WebCalendar.day[this.id.substr(8)].split("/")[1== WebCalendar.thisMonth)
334    this.style.color = WebCalendar.lightColor;
335}

336function dayMouseOut()
337ExpandedBlockStart.gifContractedBlock.gif{
338    this.className = "out"var d = WebCalendar.day[this.id.substr(8)], a = d.split("/");
339    this.style.removeAttribute('backgroundColor');
340    if(a[1== WebCalendar.thisMonth && d != WebCalendar.today)
341ExpandedSubBlockStart.gifContractedSubBlock.gif    {
342        if(WebCalendar.dateStyle && a[0== parseInt(WebCalendar.dateStyle[4], 10))
343        this.style.color = WebCalendar.lightColor;
344        this.style.color = WebCalendar.wordColor;
345    }

346}

347function writeCalendar() //对日历显示的数据的处理程序
348ExpandedBlockStart.gifContractedBlock.gif{
349    var y = WebCalendar.thisYear;
350    var m = WebCalendar.thisMonth; 
351    var d = WebCalendar.thisDay;
352    WebCalendar.daysMonth[1= (0==y%4 && (y%100!=0 || y%400==0)) ? 29 : 28;
353ExpandedSubBlockStart.gifContractedSubBlock.gif    if (!(y<=9999 && y >= 1000 && parseInt(m, 10)>0 && parseInt(m, 10)<13 && parseInt(d, 10)>0)){
354        alert("对不起,你输入了错误的日期!");
355        WebCalendar.thisYear   = new Date().getFullYear();
356        WebCalendar.thisMonth  = new Date().getMonth()+ 1;
357        WebCalendar.thisDay    = new Date().getDate(); }

358    
359    funYearSelect();
360    funMonthSelect();
361    //WebCalendar.iframe.meizzYearHead.innerText  = y +" 年";
362    //WebCalendar.iframe.meizzYearMonth.innerText = parseInt(m, 10) +" 月";
363    WebCalendar.daysMonth[1= (0==y%4 && (y%100!=0 || y%400==0)) ? 29 : 28//闰年二月为29天
364    var w = new Date(y, m-11).getDay();
365    var prevDays = m==1  ? WebCalendar.daysMonth[11] : WebCalendar.daysMonth[m-2];
366    for(var i=(w-1); i>=0; i--//这三个 for 循环为日历赋数据源(数组 WebCalendar.day)格式是 d/m/yyyy
367ExpandedSubBlockStart.gifContractedSubBlock.gif    {
368        WebCalendar.day[i] = prevDays +"/"+ (parseInt(m, 10)-1+"/"+ y;
369        if(m==1) WebCalendar.day[i] = prevDays +"/"+ 12 +"/"+ (parseInt(y, 10)-1);
370        prevDays--;
371    }

372    for(var i=1; i<=WebCalendar.daysMonth[m-1]; i++) WebCalendar.day[i+w-1= i +"/"+ m +"/"+ y;
373    for(var i=1; i<WebCalendar.dayShow-w-WebCalendar.daysMonth[m-1]+1; i++)
374ExpandedSubBlockStart.gifContractedSubBlock.gif    {
375        WebCalendar.day[WebCalendar.daysMonth[m-1]+w-1+i] = i +"/"+ (parseInt(m, 10)+1+"/"+ y;
376        if(m==12) WebCalendar.day[WebCalendar.daysMonth[m-1]+w-1+i] = i +"/"+ 1 +"/"+ (parseInt(y, 10)+1);
377    }

378    for(var i=0; i<WebCalendar.dayShow; i++)    //这个循环是根据源数组写到日历里显示
379ExpandedSubBlockStart.gifContractedSubBlock.gif    {
380        var a = WebCalendar.day[i].split("/");
381        WebCalendar.dayObj[i].innerText    = a[0];
382        WebCalendar.dayObj[i].title        = a[2+"-"+ appendZero(a[1]) +"-"+ appendZero(a[0]);
383        WebCalendar.dayObj[i].bgColor      = WebCalendar.dayBgColor;
384        WebCalendar.dayObj[i].style.color  = WebCalendar.wordColor;
385        if ((i<10 && parseInt(WebCalendar.day[i], 10)>20|| (i>27 && parseInt(WebCalendar.day[i], 10)<12))
386            WebCalendar.dayObj[i].style.color = WebCalendar.wordDark;
387        if (WebCalendar.inputDate==WebCalendar.day[i])    //设置输入框里的日期在日历上的颜色
388ExpandedSubBlockStart.gifContractedSubBlock.gif        {WebCalendar.dayObj[i].bgColor = WebCalendar.darkColor; WebCalendar.dayObj[i].style.color = WebCalendar.lightColor;}
389        if (WebCalendar.day[i] == WebCalendar.today)      //设置今天在日历上反应出来的颜色
390ExpandedSubBlockStart.gifContractedSubBlock.gif        {WebCalendar.dayObj[i].bgColor = WebCalendar.todayColor; WebCalendar.dayObj[i].style.color = WebCalendar.lightColor;}
391    }

392    if(WebCalendar.timeShow)
393ExpandedSubBlockStart.gifContractedSubBlock.gif    {
394        funHourSelect();
395        funMinuteSelect();
396    }

397}

398function returnDate() //根据日期格式等返回用户选定的日期
399ExpandedBlockStart.gifContractedBlock.gif{
400    if(WebCalendar.objExport)
401ExpandedSubBlockStart.gifContractedSubBlock.gif    {
402        var returnValue;
403        var a = (arguments.length==0? WebCalendar.day[this.id.substr(8)].split("/") : arguments[0].split("/");
404ExpandedSubBlockStart.gifContractedSubBlock.gif        var d = WebCalendar.format.match(/^(\w{4})(-|\/)(\w{1,2})\2(\w{1,2})$/);
405ExpandedSubBlockStart.gifContractedSubBlock.gif        if(d==null){alert("你设定的日期输出格式不对!\r\n\r\n请重新定义 WebCalendar.format !"); return false;}
406        var flag = d[3].length==2 || d[4].length==2//判断返回的日期格式是否要补零
407        returnValue = flag ? a[2+d[2]+ appendZero(a[1]) +d[2]+ appendZero(a[0]) : a[2+d[2]+ a[1+d[2]+ a[0];
408        if(WebCalendar.timeShow)
409ExpandedSubBlockStart.gifContractedSubBlock.gif        {
410            var h = WebCalendar.thisHour, m = WebCalendar.thisMinute, s = 0;
411            returnValue += flag ? " "+ appendZero(h) +":"+ appendZero(m) +":"+ appendZero(s) : " "+  h  +":"+ m +":"+ s;
412        }

413        WebCalendar.objExport.value = returnValue;
414        hiddenCalendar();
415    }

416}

417//-->

转载于:https://www.cnblogs.com/powersite/archive/2008/11/15/1333773.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值