温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:项目管理系统(多用户)源码
当前文件:
ProjectManager/js/calendar.js[18K,2009-6-12 11:52:29],打开代码结构图
ProjectManager/js/calendar.js[18K,2009-6-12 11:52:29],打开代码结构图1<!-- 2
document.write("<div id=meizzCalendarLayer style='position: absolute; z-index: 9999; width: 144; height: 193; display: none'>"); 3
document.write("<iframe name=meizzCalendarIframe scrolling=no frameborder=0 width=100% height=100%></iframe></div>"); 4
function writeIframe() 5
{ 6
var strIframe = "<html><head><meta http-equiv='Content-Type' content='text/html; charset=gb2312'><style>"+ 7
"*{font-size: 12px; font-family: 宋体}"+ 8
".bg{ color: "+ WebCalendar.lightColor +"; cursor: default; background-color: "+ WebCalendar.darkColor +";}"+ 9
"table#tableMain{ width: 142; height: 180;}"+ 10
"table#tableWeek td{ color: "+ WebCalendar.lightColor +";}"+ 11
"table#tableDay td{ font-weight: bold;}"+ 12
"td#meizzYearHead, td#meizzYearMonth{color: "+ WebCalendar.wordColor +"}"+ 13
".out { text-align: center; border-top: 1px solid "+ WebCalendar.DarkBorder +"; border-left: 1px solid "+ WebCalendar.DarkBorder +";"+ 14
"border-right: 1px solid "+ WebCalendar.lightColor +"; border-bottom: 1px solid "+ WebCalendar.lightColor +";}"+ 15
".over{ text-align: center; border-top: 1px solid #FFFFFF; border-left: 1px solid #FFFFFF;"+ 16
"border-bottom: 1px solid "+ WebCalendar.DarkBorder +"; border-right: 1px solid "+ WebCalendar.DarkBorder +"}"+ 17
"input{ border: 1px solid "+ WebCalendar.darkColor +"; padding-top: 1px; height: 18; cursor: hand;"+ 18
" color:"+ WebCalendar.wordColor +"; background-color: "+ WebCalendar.btnBgColor +"}"+ 19
"</style></head><body onselectstart='return false' style='margin: 0px' oncontextmenu='return false'><form name=meizz>"; 20
21
if (WebCalendar.drag){ strIframe += "<scr"+"ipt language=javascript>"+ 22
"var drag=false, cx=0, cy=0, o = parent.WebCalendar.calendar; function document.onmousemove(){"+ 23
"if(parent.WebCalendar.drag && drag){if(o.style.left=='')o.style.left=0; if(o.style.top=='')o.style.top=0;"+ 24
"o.style.left = parseInt(o.style.left) + window.event.clientX-cx;"+ 25
"o.style.top = parseInt(o.style.top) + window.event.clientY-cy;}}"+ 26
"function document.onkeydown(){ switch(window.event.keyCode){ case 27 : parent.hiddenCalendar(); break;"+ 27
"case 37 : parent.prevM(); break; case 38 : parent.prevY(); break; case 39 : parent.nextM(); break; case 40 : parent.nextY(); break;"+ 28
"case 84 : document.forms[0].today.click(); break;} window.event.keyCode = 0; window.event.returnValue= false;}"+ 29
"function dragStart(){cx=window.event.clientX; cy=window.event.clientY; drag=true;}</scr"+"ipt>"} 30
31
strIframe += "<select name=tmpYearSelect onblur='parent.hiddenSelect(this)' style='z-index:1;position:absolute;top:3;left:18;display:none'"+ 32
" onchange='parent.WebCalendar.thisYear =this.value; parent.hiddenSelect(this); parent.writeCalendar();'></select>"+ 33
"<select name=tmpMonthSelect onblur='parent.hiddenSelect(this)' style='z-index:1; position:absolute;top:3;left:74;display:none'"+ 34
" onchange='parent.WebCalendar.thisMonth=this.value; parent.hiddenSelect(this); parent.writeCalendar();'></select>"+ 35
36
"<table id=tableMain class=bg border=0 cellspacing=2 cellpadding=0>"+ 37
"<tr><td width=140 height=19 bgcolor='"+ WebCalendar.lightColor +"'>"+ 38
" <table width=140 id=tableHead border=0 cellspacing=1 cellpadding=0><tr align=center>"+ 39
" <td width=15 height=19 class=bg title='向前翻 1 月 快捷键:←' style='cursor: hand' onclick='parent.prevM()'><b><</b></td>"+ 40
" <td width=60 id=meizzYearHead title='点击此处选择年份' onclick='parent.funYearSelect(parseInt(this.innerText, 10))'"+ 41
" onmouseover='this.bgColor=parent.WebCalendar.darkColor; this.style.color=parent.WebCalendar.lightColor'"+ 42
" onmouseout='this.bgColor=parent.WebCalendar.lightColor; this.style.color=parent.WebCalendar.wordColor'></td>"+ 43
" <td width=50 id=meizzYearMonth title='点击此处选择月份' onclick='parent.funMonthSelect(parseInt(this.innerText, 10))'"+ 44
" onmouseover='this.bgColor=parent.WebCalendar.darkColor; this.style.color=parent.WebCalendar.lightColor'"+ 45
" onmouseout='this.bgColor=parent.WebCalendar.lightColor; this.style.color=parent.WebCalendar.wordColor'></td>"+ 46
" <td width=15 class=bg title='向后翻 1 月 快捷键:→' onclick='parent.nextM()' style='cursor: hand'><b>></b></td></tr></table>"+ 47
"</td></tr><tr><td height=20><table id=tableWeek border=1 width=140 cellpadding=0 cellspacing=0 "; 48
if(WebCalendar.drag){strIframe += "onmousedown='dragStart()' onmouseup='drag=false' onmouseout='drag=false'";} 49
strIframe += " borderColorLight='"+ WebCalendar.darkColor +"' borderColorDark='"+ WebCalendar.lightColor +"'>"+ 50
" <tr align=center><td height=20>日</td><td>一</td><td>二</td><td>三</td><td>四</td><td>五</td><td>六</td></tr></table>"+ 51
"</td></tr><tr><td valign=top width=140 bgcolor='"+ WebCalendar.lightColor +"'>"+ 52
" <table id=tableDay height=120 width=140 border=0 cellspacing=1 cellpadding=0>"; 53
for(var x=0; x<5; x++){ strIframe += "<tr>"; 54
for(var y=0; y<7; y++) strIframe += "<td class=out id='meizzDay"+ (x*7+y) +"'></td>"; strIframe += "</tr>";} 55
strIframe += "<tr>"; 56
for(var x=35; x<39; x++) strIframe += "<td class=out id='meizzDay"+ x +"'></td>"; 57
strIframe +="<td colspan=3 class=out title='"+ WebCalendar.regInfo +"'><input style=' background-color: "+ 58
WebCalendar.btnBgColor +";cursor: hand; padding-top: 4px; width: 100%; height: 100%; border: 0' onfocus='this.blur()'"+ 59
" type=button value=' 关闭' onclick='parent.hiddenCalendar()'></td></tr></table>"+ 60
"</td></tr><tr><td height=20 width=140 bgcolor='"+ WebCalendar.lightColor +"'>"+ 61
" <table border=0 cellpadding=1 cellspacing=0 width=140>"+ 62
" <tr><td><input name=prevYear title='向前翻 1 年 快捷键:↑' onclick='parent.prevY()' type=button value='<<'"+ 63
" onfocus='this.blur()' style='meizz:expression(this.disabled=parent.WebCalendar.thisYear==1000)'><input"+ 64
" onfocus='this.blur()' name=prevMonth title='向前翻 1 月 快捷键:←' onclick='parent.prevM()' type=button value='< '>"+ 65
" </td><td align=center><input name=today type=button value='今日' onfocus='this.blur()' style='width: 50' title='当前日期 快捷键:T'"+ 66
" onclick=\"parent.returnDate(new Date().getDate() +'/'+ (new Date().getMonth() +1) +'/'+ new Date().getFullYear())\">"+ 67
" </td><td align=right><input title='向后翻 1 月 快捷键:→' name=nextMonth onclick='parent.nextM()' type=button value=' >'"+ 68
" onfocus='this.blur()'><input name=nextYear title='向后翻 1 年 快捷键:↓' onclick='parent.nextY()' type=button value='>>'"+ 69
" onfocus='this.blur()' style='meizz:expression(this.disabled=parent.WebCalendar.thisYear==9999)'></td></tr></table>"+ 70
"</td></tr><table></form></body></html>"; 71
with(WebCalendar.iframe) 72
{ 73
document.writeln(strIframe); document.close(); 74
for(var i=0; i<39; i++) 75
{ 76
WebCalendar.dayObj[i] = eval("meizzDay"+ i); 77
WebCalendar.dayObj[i].onmouseover = dayMouseOver; 78
WebCalendar.dayObj[i].onmouseout = dayMouseOut; 79
WebCalendar.dayObj[i].onclick = returnDate; 80
} 81
} 82
} 83
function WebCalendar() //初始化日历的设置 84
{ 85
this.regInfo = "关闭的快捷键:[Esc]"; 86
this.daysMonth = new Array(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31); 87
this.day = new Array(39); //定义日历展示用的数组 88
this.dayObj = new Array(39); //定义日期展示控件数组 89
this.dateStyle = null; //保存格式化后日期数组 90
this.objExport = null; //日历回传的显示控件 91
this.eventSrc = null; //日历显示的触发控件 92
this.inputDate = null; //转化外的输入的日期(d/m/yyyy) 93
this.thisYear = new Date().getFullYear(); //定义年的变量的初始值 94
this.thisMonth = new Date().getMonth()+ 1; //定义月的变量的初始值 95
this.thisDay = new Date().getDate(); //定义日的变量的初始值 96
this.today = this.thisDay +"/"+ this.thisMonth +"/"+ this.thisYear; //今天(d/m/yyyy) 97
this.iframe = window.frames("meizzCalendarIframe"); //日历的 iframe 载体 98
this.calendar = getObjectById("meizzCalendarLayer"); //日历的层 99
this.dateReg = ""; //日历格式验证的正则式 100
101
this.yearFall = 50; //定义年下拉框的年差值 102
this.format = "yyyy-mm-dd"; //回传日期的格式 103
this.timeShow = false; //是否返回时间 104
this.drag = true; //是否允许拖动 105
this.darkColor = "#1260A1"; //控件的暗色 106
this.lightColor = "#FFFFFF"; //控件的亮色 107
this.btnBgColor = "#BBC8D3"; //控件的按钮背景色 108
this.wordColor = "#333333"; //控件的文字颜色 109
this.wordDark = "#999999"; //控件的暗文字颜色 110
this.dayBgColor = "#F5F5FA"; //日期数字背景色 111
this.todayColor = "#FF0000"; //今天在日历上的标示背景色 112
this.DarkBorder = "#F5F5FA"; //日期显示的立体表达色 113
} var WebCalendar = new WebCalendar(); 114
115
function calendar() //主调函数 116
{ 117
var e = window.event.srcElement; writeIframe(); 118
var o = WebCalendar.calendar.style; WebCalendar.eventSrc = e; 119
if (arguments.length == 0) WebCalendar.objExport = e; 120
else WebCalendar.objExport = arguments[0]; 121
//feng modified for gwrhy builde a arguments 122
var li_top; 123
if (arguments.length == 1) li_top = 0; 124
else li_top = eval(arguments[1]); 125
126
WebCalendar.iframe.tableWeek.style.cursor = WebCalendar.drag ? "move" : "default"; 127
// zzhui modified for gwrhy 128
var t = e.offsetTop-li_top, h = e.clientHeight, l = e.offsetLeft, p = e.type; 129
while (e = e.offsetParent){t += e.offsetTop; l += e.offsetLeft;} 130
o.display = ""; WebCalendar.iframe.document.body.focus(); 131
var cw = WebCalendar.calendar.clientWidth, ch = WebCalendar.calendar.clientHeight; 132
var dw = document.body.clientWidth, dl = document.body.scrollLeft, dt = document.body.scrollTop; 133
134
if (document.body.clientHeight + dt - t - h >= ch) o.top = (p=="image")? t + h : t + h + 6; 135
else o.top = (t - dt < ch) ? ((p=="image")? t + h : t + h + 6) : t - ch; 136
if (dw + dl - l >= cw) o.left = l; else o.left = (dw >= cw) ? dw - cw + dl : dl; 137
138
if (!WebCalendar.timeShow) WebCalendar.dateReg = /^(\d{1,4})(-|\/)(\d{1,2})\2(\d{1,2})$/; 139
else WebCalendar.dateReg = /^(\d{1,4})(-|\/)(\d{1,2})\2(\d{1,2}) (\d{1,2}):(\d{1,2}):(\d{1,2})$/; 140
141
try{ 142
if (WebCalendar.objExport.value.trim() != ""){ 143
WebCalendar.dateStyle = WebCalendar.objExport.value.trim().match(WebCalendar.dateReg); 144
if (WebCalendar.dateStyle == null) 145
{ 146
WebCalendar.thisYear = new Date().getFullYear(); 147
WebCalendar.thisMonth = new Date().getMonth()+ 1; 148
WebCalendar.thisDay = new Date().getDate(); 149
//alert("原文本框里的日期有错误!\n可能与你定义的显示时分秒有冲突!"); //deleted by linhx 150
writeCalendar(); return false; 151
} 152
else 153
{ 154
WebCalendar.thisYear = parseInt(WebCalendar.dateStyle[1], 10); 155
WebCalendar.thisMonth = parseInt(WebCalendar.dateStyle[3], 10); 156
WebCalendar.thisDay = parseInt(WebCalendar.dateStyle[4], 10); 157
WebCalendar.inputDate = parseInt(WebCalendar.thisDay, 10) +"/"+ parseInt(WebCalendar.thisMonth, 10) +"/"+ 158
parseInt(WebCalendar.thisYear, 10); writeCalendar(); 159
} 160
} else writeCalendar(); 161
} catch(e){writeCalendar();} 162
} 163
function funMonthSelect() //月份的下拉框 164
{ 165
var m = isNaN(parseInt(WebCalendar.thisMonth, 10)) ? new Date().getMonth() + 1 : parseInt(WebCalendar.thisMonth); 166
var e = WebCalendar.iframe.document.forms[0].tmpMonthSelect; 167
for (var i=1; i<13; i++) e.options.add(new Option(i +"月", i)); 168
e.style.display = ""; e.value = m; e.focus(); window.status = e.style.top; 169
} 170
function funYearSelect() //年份的下拉框 171
{ 172
var n = WebCalendar.yearFall; 173
var e = WebCalendar.iframe.document.forms[0].tmpYearSelect; 174
var y = isNaN(parseInt(WebCalendar.thisYear, 10)) ? new Date().getFullYear() : parseInt(WebCalendar.thisYear); 175
y = (y <= 1000)? 1000 : ((y >= 9999)? 9999 : y); 176
var min = (y - n >= 1000) ? y - n : 1000; 177
var max = (y + n <= 9999) ? y + n : 9999; 178
min = (max == 9999) ? max-n*2 : min; 179
max = (min == 1000) ? min+n*2 : max; 180
for (var i=min; i<=max; i++) e.options.add(new Option(i +"年", i)); 181
e.style.display = ""; e.value = y; e.focus(); 182
} 183
function prevM() //往前翻月份 184
{ 185
WebCalendar.thisDay = 1; 186
if (WebCalendar.thisMonth==1) 187
{ 188
WebCalendar.thisYear--; 189
WebCalendar.thisMonth=13; 190
} 191
WebCalendar.thisMonth--; writeCalendar(); 192
} 193
function nextM() //往后翻月份 194
{ 195
WebCalendar.thisDay = 1; 196
if (WebCalendar.thisMonth==12) 197
{ 198
WebCalendar.thisYear++; 199
WebCalendar.thisMonth=0; 200
} 201
WebCalendar.thisMonth++; writeCalendar(); 202
} 203
function prevY(){WebCalendar.thisDay = 1; WebCalendar.thisYear--; writeCalendar();}//往前翻 Year 204
function nextY(){WebCalendar.thisDay = 1; WebCalendar.thisYear++; writeCalendar();}//往后翻 Year 205
function hiddenSelect(e){for(var i=e.options.length; i>-1; i--)e.options.remove(i); e.style.display="none";} 206
function getObjectById(id){ if(document.all) return(eval("document.all."+ id)); return(eval(id)); } 207
function hiddenCalendar(){getObjectById("meizzCalendarLayer").style.display = "none";}; 208
function appendZero(n){return(("00"+ n).substr(("00"+ n).length-2));}//日期自动补零程序 209
function String.prototype.trim(){return this.replace(/(^\s*)|(\s*$)/g,"");} 210
function dayMouseOver() 211
{ 212
this.className = "over"; 213
this.style.backgroundColor = WebCalendar.darkColor; 214
if(WebCalendar.day[this.id.substr(8)].split("/")[1] == WebCalendar.thisMonth) 215
this.style.color = WebCalendar.lightColor; 216
} 217
function dayMouseOut() 218
{ 219
this.className = "out"; var d = WebCalendar.day[this.id.substr(8)], a = d.split("/"); 220
this.style.removeAttribute('backgroundColor'); 221
if(a[1] == WebCalendar.thisMonth && d != WebCalendar.today) 222
{ 223
if(WebCalendar.dateStyle && a[0] == parseInt(WebCalendar.dateStyle[4], 10)) 224
this.style.color = WebCalendar.lightColor; 225
this.style.color = WebCalendar.wordColor; 226
} 227
} 228
function writeCalendar() //对日历显示的数据的处理程序 229
{ 230
var y = WebCalendar.thisYear; 231
var m = WebCalendar.thisMonth; 232
var d = WebCalendar.thisDay; 233
WebCalendar.daysMonth[1] = (0==y%4 && (y%100!=0 || y%400==0)) ? 29 : 28; 234
if (!(y<=9999 && y >= 1000 && parseInt(m, 10)>0 && parseInt(m, 10)<13 && parseInt(d, 10)>0)){ 235
alert("对不起,你输入了错误的日期!"); 236
WebCalendar.thisYear = new Date().getFullYear(); 237
WebCalendar.thisMonth = new Date().getMonth()+ 1; 238
WebCalendar.thisDay = new Date().getDate(); } 239
y = WebCalendar.thisYear; 240
m = WebCalendar.thisMonth; 241
d = WebCalendar.thisDay; 242
WebCalendar.iframe.meizzYearHead.innerText = y +" 年"; 243
WebCalendar.iframe.meizzYearMonth.innerText = parseInt(m, 10) +" 月"; 244
WebCalendar.daysMonth[1] = (0==y%4 && (y%100!=0 || y%400==0)) ? 29 : 28; //闰年二月为29天 245
var w = new Date(y, m-1, 1).getDay(); 246
var prevDays = m==1 ? WebCalendar.daysMonth[11] : WebCalendar.daysMonth[m-2]; 247
for(var i=(w-1); i>=0; i--) //这三个 for 循环为日历赋数据源(数组 WebCalendar.day)格式是 d/m/yyyy 248
{ 249
WebCalendar.day[i] = prevDays +"/"+ (parseInt(m, 10)-1) +"/"+ y; 250
if(m==1) WebCalendar.day[i] = prevDays +"/"+ 12 +"/"+ (parseInt(y, 10)-1); 251
prevDays--; 252
} 253
for(var i=1; i<=WebCalendar.daysMonth[m-1]; i++) WebCalendar.day[i+w-1] = i +"/"+ m +"/"+ y; 254
for(var i=1; i<39-w-WebCalendar.daysMonth[m-1]+1; i++) 255
{ 256
WebCalendar.day[WebCalendar.daysMonth[m-1]+w-1+i] = i +"/"+ (parseInt(m, 10)+1) +"/"+ y; 257
if(m==12) WebCalendar.day[WebCalendar.daysMonth[m-1]+w-1+i] = i +"/"+ 1 +"/"+ (parseInt(y, 10)+1); 258
} 259
for(var i=0; i<39; i++) //这个循环是根据源数组写到日历里显示 260
{ 261
var a = WebCalendar.day[i].split("/"); 262
WebCalendar.dayObj[i].innerText = a[0]; 263
WebCalendar.dayObj[i].title = a[2] +"-"+ appendZero(a[1]) +"-"+ appendZero(a[0]); 264
WebCalendar.dayObj[i].bgColor = WebCalendar.dayBgColor; 265
WebCalendar.dayObj[i].style.color = WebCalendar.wordColor; 266
if ((i<10 && parseInt(WebCalendar.day[i], 10)>20) || (i>27 && parseInt(WebCalendar.day[i], 10)<12)) 267
WebCalendar.dayObj[i].style.color = WebCalendar.wordDark; 268
if (WebCalendar.inputDate==WebCalendar.day[i]) //设置输入框里的日期在日历上的颜色 269
{WebCalendar.dayObj[i].bgColor = WebCalendar.darkColor; WebCalendar.dayObj[i].style.color = WebCalendar.lightColor;} 270
if (WebCalendar.day[i] == WebCalendar.today) //设置今天在日历上反应出来的颜色 271
{WebCalendar.dayObj[i].bgColor = WebCalendar.todayColor; WebCalendar.dayObj[i].style.color = WebCalendar.lightColor;} 272
} 273
} 274
function returnDate() //根据日期格式等返回用户选定的日期 275
{ 276
if(WebCalendar.objExport) 277
{ 278
var returnValue; 279
var a = (arguments.length==0) ? WebCalendar.day[this.id.substr(8)].split("/") : arguments[0].split("/"); 280
var d = WebCalendar.format.match(/^(\w{4})(-|\/)(\w{1,2})\2(\w{1,2})$/); 281
if(d==null) 282
{ 283
alert("你设定的日期输出格式不对!\r\n\r\n请重新定义 WebCalendar.format !"); 284
return false; 285
} 286
var flag = d[3].length==2 || d[4].length==2; //判断返回的日期格式是否要补零 287
returnValue = flag ? a[2] +d[2]+ appendZero(a[1]) +d[2]+ appendZero(a[0]) : a[2] +d[2]+ a[1] +d[2]+ a[0]; 288
if(WebCalendar.timeShow) 289
{ 290
var h = new Date().getHours(), m = new Date().getMinutes(), s = new Date().getSeconds(); 291
returnValue += flag ? " "+ appendZero(h) +":"+ appendZero(m) +":"+ appendZero(s) : " "+ h +":"+ m +":"+ s; 292
} 293
WebCalendar.objExport.value = returnValue; 294
hiddenCalendar(); 295
} 296
} 297
function document.onclick() 298
{ 299
if(WebCalendar.eventSrc != window.event.srcElement) hiddenCalendar(); 300
} 301
//-->






}