- 浏览: 1378023 次
- 性别:
- 来自: 江西
文章分类
- 全部博客 (287)
- oracle (30)
- Java (73)
- MySQL (16)
- Myeclipse/eclipse (12)
- javascript (15)
- JSP/Servlet (7)
- maven (14)
- AJAX (2)
- JQuery (9)
- tomcat (8)
- spring (21)
- Linux (28)
- PHP (9)
- UI (1)
- 编程错误及处理 (38)
- 多线程 (18)
- hibernate (10)
- Web Service (3)
- struts2 (6)
- log4j (3)
- SVN (4)
- DWR (1)
- lucene (1)
- 正则表达式 (4)
- jstl (2)
- SSL (3)
- POI (1)
- 网络编程 (1)
- 算法 (2)
- xml (4)
- 加密解密 (1)
- IO (7)
- jetty (2)
- 存储过程 (1)
- SQL Server (1)
- MongoDB (1)
- mybatis (1)
- ETL (1)
- Zookeeper (1)
- Hadoop (5)
- Redis (1)
- spring cloud (1)
最新评论
-
ron.luo:
牛逼,正解!
maven设定项目编码 -
lichaoqun:
java.sql.SQLException: Can't call commit when autocommit=true -
Xujian0000abcd:
Thanks...
Cannot proxy target class because CGLIB2 is not available. Add CGLIB to the clas -
renyuan2ni:
[i][b][u]引用[list]
[*][img][flas ...
Manual close is not allowed over a Spring managed SqlSession -
851228082:
宋建勇 写道851228082 写道<!-- 文件拷贝时 ...
maven设定项目编码
calendar.js
demo.html
引自:http://blog.csdn.net/cityhunter172/article/details/3957836
var cal; var isFocus=false; // 是否为焦点 var pickMode ={ "second":1, "minute":2, "hour":3, "day":4, "month":5, "year":6 }; var topY=0,leftX=0; // 自定义定位偏移量 2007-02-11 由 寒羽枫添加 // 选择日期 → 由 寒羽枫 2007-06-10 添加,通过 ID 来选日期 function SelectDateById(id,strFormat,x,y) { var obj = document.getElementById(id); if(obj == null){return false;} obj.focus(); if(obj.onclick != null){obj.onclick();} else if(obj.click != null){obj.click();} else{SelectDate(obj,strFormat,x,y)} } // 选择日期 → 由 寒羽枫 2006-06-25 添加 function SelectDate(obj,strFormat,x,y) { leftX =(x == null) ? leftX : x; topY =(y == null) ? topY : y;// 自定义定位偏移量 2007-02-11 由 寒羽枫添加 if(document.getElementById("ContainerPanel")==null){InitContainerPanel();} var date = new Date(); var by = date.getFullYear()-50; // 最小值 → 50 年前 var ey = date.getFullYear()+50; // 最大值 → 50 年后 // cal = new Calendar(by, ey,1,strFormat); //初始化英文版,0 为中文版 cal = (cal==null) ? new Calendar(by, ey, 0) : cal; // 不用每次都初始化 // 2006-12-03 修正 cal.DateMode =pickMode["second"]; // 复位 if(strFormat.indexOf('s')< 0) {cal.DateMode =pickMode["minute"];}// 精度为分 if(strFormat.indexOf('m')< 0) {cal.DateMode =pickMode["hour"];}// 精度为时 if(strFormat.indexOf('h')< 0) {cal.DateMode =pickMode["day"];}// 精度为日 if(strFormat.indexOf('d')< 0) {cal.DateMode =pickMode["month"];}// 精度为月 if(strFormat.indexOf('M')< 0) {cal.DateMode =pickMode["year"];}// 精度为年 if(strFormat.indexOf('y')< 0) {cal.DateMode =pickMode["second"];}// 默认精度为秒 cal.dateFormatStyleOld = cal.dateFormatStyle; cal.dateFormatStyle = strFormat; cal.show(obj); } /**//**//**//**//**//**//**//** * 返回日期 * * @param d * the delimiter * @param p * the pattern of your date 2006-06-25 由 * 寒羽枫 修改为根据用户指定的 style 来确定; */ String.prototype.toDate = function(style) { var y = this.substring(style.indexOf('y'),style.lastIndexOf('y')+1);// 年 var M = this.substring(style.indexOf('M'),style.lastIndexOf('M')+1);// 月 var d = this.substring(style.indexOf('d'),style.lastIndexOf('d')+1);// 日 var h = this.substring(style.indexOf('h'),style.lastIndexOf('h')+1);// 时 var m = this.substring(style.indexOf('m'),style.lastIndexOf('m')+1);// 分 var s = this.substring(style.indexOf('s'),style.lastIndexOf('s')+1);// 秒 if(s == null ||s == "" || isNaN(s)) {s = new Date().getSeconds();} if(m == null ||m == "" || isNaN(m)) {m = new Date().getMinutes();} if(h == null ||h == "" || isNaN(h)) {h = new Date().getHours();} if(d == null ||d == "" || isNaN(d)) {d = new Date().getDate();} if(M == null ||M == "" || isNaN(M)) {M = new Date().getMonth()+1;} if(y == null ||y == "" || isNaN(y)) {y = new Date().getFullYear();} var dt ; eval ("dt = new Date('"+ y+"', '"+(M-1)+"','"+ d+"','"+ h+"','"+ m+"','"+ s +"')"); return dt; } /**//**//**//**//**//**//**//** * 格式化日期 * * @param d * the delimiter * @param p * the pattern of your date * @author meizz */ Date.prototype.format = function(style) { var o = { "M+" : this.getMonth() + 1, // month "d+" : this.getDate(), // day "h+" : this.getHours(), // hour "m+" : this.getMinutes(), // minute "s+" : this.getSeconds(), // second "w+" : "天一二三四五六".charAt(this.getDay()), // week "q+" : Math.floor((this.getMonth() + 3) / 3), // quarter "S" : this.getMilliseconds() // millisecond } if(/(y+)/.test(style)) { style = style.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length)); } for(var k in o){ if(new RegExp("("+ k +")").test(style)){ style = style.replace(RegExp.$1, RegExp.$1.length == 1 ? o[k] : ("00" + o[k]).substr(("" + o[k]).length)); } } return style; } // 2007-09-14 由寒羽枫添加返回所选日期 Calendar.prototype.ReturnDate = function(dt) { if (this.dateControl != null){this.dateControl.value = dt;} calendar.hide(); if(this.dateControl.onchange == null){return;} // 将 onchange 转成其它函数,以免触发验证事件 var ev = this.dateControl.onchange.toString(); // 找出函数的字串 ev = ev.substring( ((ev.indexOf("ValidatorOnChange();")> 0) ? ev.indexOf("ValidatorOnChange();") + 20 : ev.indexOf("{") + 1) , ev.lastIndexOf("}"));// 去除验证函数 ValidatorOnChange(); var fun = new Function(ev); // 重新定义函数 this.dateControl.changeEvent = fun; this.dateControl.changeEvent();// 触发自定义 changeEvent 函数 } /**//**//**//**//**//**//**//** * 日历类 * * @param beginYear * 1990 * @param endYear * 2010 * @param lang * 0(中文)|1(英语) 可自由扩充 * @param dateFormatStyle * "yyyy-MM-dd"; * @version 2006-04-01 * @author KimSoft (jinqinghua [at] gmail.com) * @update */ function Calendar(beginYear, endYear, lang, dateFormatStyle) { this.beginYear = 1950; this.endYear = 2050; this.lang = 0; // 0(中文) | 1(英文) this.dateFormatStyle = "yyyy-MM-dd hh:mm:ss"; if (beginYear != null && endYear != null){ this.beginYear = beginYear; this.endYear = endYear; } if (lang != null){ this.lang = lang } if (dateFormatStyle != null){ this.dateFormatStyle = dateFormatStyle } this.dateControl = null; this.panel = this.getElementById("calendarPanel"); this.container = this.getElementById("ContainerPanel"); this.form = null; this.date = new Date(); this.year = this.date.getFullYear(); this.month = this.date.getMonth(); this.day = this.date.getDate(); this.hour = this.date.getHours(); this.minute = this.date.getMinutes(); this.second = this.date.getSeconds(); this.colors = { "cur_word" : "#FFFFFF", // 当日日期文字颜色 "cur_bg" : "#00FF00", // 当日日期单元格背影色 "sel_bg" : "#FFCCCC", // 已被选择的日期单元格背影色 2006-12-03 寒羽枫添加 "sun_word" : "#FF0000", // 星期天文字颜色 "sat_word" : "#0000FF", // 星期六文字颜色 "td_word_light" : "#333333", // 单元格文字颜色 "td_word_dark" : "#CCCCCC", // 单元格文字暗色 "td_bg_out" : "#EFEFEF", // 单元格背影色 "td_bg_over" : "#FFCC00", // 单元格背影色 "tr_word" : "#FFFFFF", // 日历头文字颜色 "tr_bg" : "#666666", // 日历头背影色 "input_border" : "#CCCCCC", // input控件的边框颜色 "input_bg" : "#EFEFEF" // input控件的背影色 } /* * //2008-01-29 放到了 show ,因为要做 pickMode 判断 this.draw(); this.bindYear(); * this.bindMonth(); */ // this.changeSelect(); // this.bindData(); //2006-12-30 由民工.砖家注释 } /**//**//**//**//**//**//**//** * 日历类属性(语言包,可自由扩展) */ Calendar.language = { "year" : [[""], [""]], "months" : [["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"], ["JAN","FEB","MAR","APR","MAY","JUN","JUL","AUG","SEP","OCT","NOV","DEC"] ], "weeks" : [["日","一","二","三","四","五","六"], ["SUN","MON","TUR","WED","THU","FRI","SAT"] ], "hour" : [["时"], ["H"]], "minute" : [["分"], ["M"]], "second" : [["秒"], ["S"]], "clear" : [["清空"], ["CLS"]], "today" : [["今天"], ["TODAY"]], "pickTxt" : [["确定"], ["OK"]],// pickMode 精确到年、月时把今天变成“确定” "close" : [["关闭"], ["CLOSE"]] } Calendar.prototype.draw = function() { calendar = this; var mvAry = []; // mvAry[mvAry.length] = ' <form name="calendarForm" style="margin: 0px;">'; // //因 <form> 不能嵌套, 2006-12-01 由寒羽枫改用 Div mvAry[mvAry.length] = ' <div name="calendarForm" style="margin: 0px;">'; mvAry[mvAry.length] = ' <table width="100%" border="0" cellpadding="0" cellspacing="1" style="font-size:12px;">'; mvAry[mvAry.length] = ' <tr>'; mvAry[mvAry.length] = ' <th align="left" width="1%"><input style="border: 1px solid ' + calendar.colors["input_border"] + ';background-color:' + calendar.colors["input_bg"] + ';width:16px;height:20px;'; if(calendar.DateMode > pickMode["month"]){mvAry[mvAry.length] = 'display:none;';}// pickMode // 精确到年时隐藏“月” mvAry[mvAry.length] ='" name="prevMonth" type="button" id="prevMonth" value="<" /></th>'; mvAry[mvAry.length] = ' <th align="center" width="98%" nowrap="nowrap"><select name="calendarYear" id="calendarYear" style="font-size:12px;"></select><select name="calendarMonth" id="calendarMonth" style="font-size:12px;'; if(calendar.DateMode > pickMode["month"]){mvAry[mvAry.length] = 'display:none;';}// pickMode // 精确到年时隐藏“月” mvAry[mvAry.length] = '"></select></th>'; mvAry[mvAry.length] = ' <th align="right" width="1%"><input style="border: 1px solid ' + calendar.colors["input_border"] + ';background-color:' + calendar.colors["input_bg"] + ';width:16px;height:20px;'; if(calendar.DateMode > pickMode["month"]){mvAry[mvAry.length] = 'display:none;';}// pickMode // 精确到年时隐藏“月” mvAry[mvAry.length] ='" name="nextMonth" type="button" id="nextMonth" value=">" /></th>'; mvAry[mvAry.length] = ' </tr>'; mvAry[mvAry.length] = ' </table>'; mvAry[mvAry.length] = ' <table id="calendarTable" width="100%" style="border:0px solid #CCCCCC;background-color:#FFFFFF;font-size:12px;'; if(calendar.DateMode >= pickMode["month"]){mvAry[mvAry.length] = 'display:none;';}// pickMode // 精确到年、月时隐藏“天” mvAry[mvAry.length] = '" border="0" cellpadding="3" cellspacing="1">'; mvAry[mvAry.length] = ' <tr>'; for(var i = 0; i < 7; i++) { mvAry[mvAry.length] = ' <th style="font-weight:normal;background-color:' + calendar.colors["tr_bg"] + ';color:' + calendar.colors["tr_word"] + ';">' + Calendar.language["weeks"][this.lang][i] + '</th>'; } mvAry[mvAry.length] = ' </tr>'; for(var i = 0; i < 6;i++){ mvAry[mvAry.length] = ' <tr align="center">'; for(var j = 0; j < 7; j++) { if (j == 0){ mvAry[mvAry.length] = ' <td style="cursor:default;color:' + calendar.colors["sun_word"] + ';"></td>'; } else if(j == 6) { mvAry[mvAry.length] = ' <td style="cursor:default;color:' + calendar.colors["sat_word"] + ';"></td>'; } else { mvAry[mvAry.length] = ' <td style="cursor:default;"></td>'; } } mvAry[mvAry.length] = ' </tr>'; } // 2009-03-03 添加的代码,放置时间的行 mvAry[mvAry.length] = ' <tr style="'; if(calendar.DateMode >= pickMode["day"]){mvAry[mvAry.length] = 'display:none;';}// pickMode // 精确到时日隐藏“时间” mvAry[mvAry.length] = '"><td align="center" colspan="7">'; mvAry[mvAry.length] = ' <select name="calendarHour" id="calendarHour" style="font-size:12px;"></select>' + Calendar.language["hour"][this.lang]; mvAry[mvAry.length] = '<span style="' if(calendar.DateMode >= pickMode["hour"]){mvAry[mvAry.length] = 'display:none;';}// pickMode // 精确到小时时隐藏“分” mvAry[mvAry.length] = '"><select name="calendarMinute" id="calendarMinute" style="font-size:12px;"></select>' + Calendar.language["minute"][this.lang]+'</span>'; mvAry[mvAry.length] = '<span style="' if(calendar.DateMode >= pickMode["minute"]){mvAry[mvAry.length] = 'display:none;';}// pickMode // 精确到小时、分时隐藏“秒” mvAry[mvAry.length] = '"><select name="calendarSecond" id="calendarSecond" style="font-size:12px;"></select>'+ Calendar.language["second"][this.lang]+'</span>'; mvAry[mvAry.length] = ' </td></tr>'; mvAry[mvAry.length] = ' </table>'; // mvAry[mvAry.length] = ' </from>'; mvAry[mvAry.length] = ' <div align="center" style="padding:4px 4px 4px 4px;background-color:' + calendar.colors["input_bg"] + ';">'; mvAry[mvAry.length] = ' <input name="calendarClear" type="button" id="calendarClear" value="' + Calendar.language["clear"][this.lang] + '" style="border: 1px solid ' + calendar.colors["input_border"] + ';background-color:' + calendar.colors["input_bg"] + ';width:40px;height:20px;font-size:12px;cursor:pointer;"/>'; mvAry[mvAry.length] = ' <input name="calendarToday" type="button" id="calendarToday" value="' mvAry[mvAry.length] = (calendar.DateMode == pickMode["day"]) ? Calendar.language["today"][this.lang] : Calendar.language["pickTxt"][this.lang]; mvAry[mvAry.length] = '" style="border: 1px solid ' + calendar.colors["input_border"] + ';background-color:' + calendar.colors["input_bg"] + ';width:60px;height:20px;font-size:12px;cursor:pointer"/>'; mvAry[mvAry.length] = ' <input name="calendarClose" type="button" id="calendarClose" value="' + Calendar.language["close"][this.lang] + '" style="border: 1px solid ' + calendar.colors["input_border"] + ';background-color:' + calendar.colors["input_bg"] + ';width:40px;height:20px;font-size:12px;cursor:pointer"/>'; mvAry[mvAry.length] = ' </div>'; mvAry[mvAry.length] = ' </div>'; this.panel.innerHTML = mvAry.join(""); /**//**//**//** ****** 以下代码由寒羽枫 2006-12-01 添加 ********* */ var obj = this.getElementById("prevMonth"); obj.onclick = function () {calendar.goPrevMonth(calendar);} obj.onblur = function () {calendar.onblur();} this.prevMonth= obj; obj = this.getElementById("nextMonth"); obj.onclick = function () {calendar.goNextMonth(calendar);} obj.onblur = function () {calendar.onblur();} this.nextMonth= obj; obj = this.getElementById("calendarClear"); obj.onclick = function () { calendar.ReturnDate(""); /* * calendar.dateControl.value = * "";calendar.hide(); */// 2007-09-14 // 由寒羽枫注释 } this.calendarClear = obj; obj = this.getElementById("calendarClose"); obj.onclick = function () {calendar.hide();} this.calendarClose = obj; obj = this.getElementById("calendarYear"); obj.onchange = function () {calendar.update(calendar);} obj.onblur = function () {calendar.onblur();} this.calendarYear = obj; obj = this.getElementById("calendarMonth"); with(obj) { onchange = function () {calendar.update(calendar);} onblur = function () {calendar.onblur();} }this.calendarMonth = obj; obj = this.getElementById("calendarHour"); obj.onchange = function () {calendar.hour = this.options[this.selectedIndex].value;} obj.onblur = function () {calendar.onblur();} this.calendarHour = obj; obj = this.getElementById("calendarMinute"); obj.onchange = function () {calendar.minute = this.options[this.selectedIndex].value;} obj.onblur = function () {calendar.onblur();} this.calendarMinute = obj; obj = this.getElementById("calendarSecond"); obj.onchange = function () {calendar.second = this.options[this.selectedIndex].value;} obj.onblur = function () {calendar.onblur();} this.calendarSecond = obj; obj = this.getElementById("calendarToday"); obj.onclick = function () { var today = (calendar.DateMode != pickMode["day"]) ? new Date(calendar.year,calendar.month,calendar.day,calendar.hour,calendar.minute,calendar.second) : new Date();// 2008-01-29 calendar.ReturnDate(today.format(calendar.dateFormatStyle)); } this.calendarToday = obj; } // 年份下拉框绑定数据 Calendar.prototype.bindYear = function() { var cy = this.calendarYear;// 2006-12-01 由寒羽枫修改 cy.length = 0; for (var i = this.beginYear; i <= this.endYear; i++){ cy.options[cy.length] = new Option(i + Calendar.language["year"][this.lang], i); } } // 月份下拉框绑定数据 Calendar.prototype.bindMonth = function() { var cm = this.calendarMonth;// 2006-12-01 由寒羽枫修改 cm.length = 0; for (var i = 0; i < 12; i++){ cm.options[cm.length] = new Option(Calendar.language["months"][this.lang][i], i); } } // 小时下拉框绑定数据 Calendar.prototype.bindHour = function() { var ch = this.calendarHour; if(ch.length > 0){return;}// 2009-03-03 不需要重新绑定,提高性能 // ch.length = 0; var h; for (var i = 0; i < 24; i++){ h = ("00" + i +"").substr(("" + i).length); ch.options[ch.length] = new Option(h, h); } } // 分钟下拉框绑定数据 Calendar.prototype.bindMinute = function() { var cM = this.calendarMinute; if(cM.length > 0){return;}// 2009-03-03 不需要重新绑定,提高性能 // cM.length = 0; var M; for (var i = 0; i < 60; i++){ M = ("00" + i +"").substr(("" + i).length); cM.options[cM.length] = new Option(M, M); } } // 秒钟下拉框绑定数据 Calendar.prototype.bindSecond = function() { var cs = this.calendarSecond; if(cs.length > 0){return;}// 2009-03-03 不需要重新绑定,提高性能 // cs.length = 0; var s; for (var i = 0; i < 60; i++){ s = ("00" + i +"").substr(("" + i).length); cs.options[cs.length] = new Option(s, s); } } // 向前一月 Calendar.prototype.goPrevMonth = function(e){ if (this.year == this.beginYear && this.month == 0){return;} this.month--; if (this.month == -1) { this.year--; this.month = 11; } this.date = new Date(this.year, this.month, 1); this.changeSelect(); this.bindData(); } // 向后一月 Calendar.prototype.goNextMonth = function(e){ if (this.year == this.endYear && this.month == 11){return;} this.month++; if (this.month == 12) { this.year++; this.month = 0; } this.date = new Date(this.year, this.month, 1); this.changeSelect(); this.bindData(); } // 改变SELECT选中状态 Calendar.prototype.changeSelect = function() { var cy = this.calendarYear;// 2006-12-01 由寒羽枫修改 var cm = this.calendarMonth; var ch = this.calendarHour; var cM = this.calendarMinute; var cs = this.calendarSecond; // 2006-12-30 由民工.砖家修改,减少运算次数 cy[this.date.getFullYear()-this.beginYear].selected = true; cm[this.date.getMonth()].selected =true; // 2009-03-03 添加,初始化时间的值 ch[this.hour].selected =true; cM[this.minute].selected =true; cs[this.second].selected =true; } // 更新年、月 Calendar.prototype.update = function (e){ this.year = e.calendarYear.options[e.calendarYear.selectedIndex].value;// 2006-12-01 // 由寒羽枫修改 this.month = e.calendarMonth.options[e.calendarMonth.selectedIndex].value; this.date = new Date(this.year, this.month, 1); // this.changeSelect(); this.bindData(); } // 绑定数据到月视图 Calendar.prototype.bindData = function () { var calendar = this; if(calendar.DateMode >= pickMode["month"]){return;}// 2008-01-29 // var dateArray = this.getMonthViewArray(this.date.getYear(), // this.date.getMonth()); // 2006-12-30 由民工.砖家修改 在Firefox 下年份错误 var dateArray = this.getMonthViewArray(this.date.getFullYear(), this.date.getMonth()); var tds = this.getElementById("calendarTable").getElementsByTagName("td"); for(var i = 0; i < tds.length; i++) { tds[i].style.backgroundColor = calendar.colors["td_bg_out"]; tds[i].onclick = function () {return;} tds[i].onmouseover = function () {return;} tds[i].onmouseout = function () {return;} if (i > dateArray.length - 1) break; tds[i].innerHTML = dateArray[i]; if (dateArray[i] != " "){ tds[i].bgColorTxt = "td_bg_out"; // 2009-03-03 保存背景色的class var cur = new Date(); tds[i].isToday = false; if (cur.getFullYear() == calendar.date.getFullYear() && cur.getMonth() == calendar.date.getMonth() && cur.getDate() == dateArray[i]) { // 是今天的单元格 tds[i].style.backgroundColor = calendar.colors["cur_bg"]; tds[i].bgColorTxt = "cur_bg"; tds[i].isToday = true; } if(calendar.dateControl != null ) { cur = calendar.dateControl.value.toDate(calendar.dateFormatStyle); if (cur.getFullYear() == calendar.date.getFullYear() && cur.getMonth() == calendar.date.getMonth()&& cur.getDate() == dateArray[i]) { // 是已被选中的单元格 calendar.selectedDayTD = tds[i]; tds[i].style.backgroundColor = calendar.colors["sel_bg"]; tds[i].bgColorTxt = "sel_bg"; } } tds[i].onclick = function () { if(calendar.DateMode == pickMode["day"]) // 2009-03-03 // 当选择日期时,点击格子即返回值 { calendar.ReturnDate(new Date(calendar.date.getFullYear(), calendar.date.getMonth(), this.innerHTML).format(calendar.dateFormatStyle)); } else { if(calendar.selectedDayTD != null) // 2009-03-03 清除已选中的背景色 { calendar.selectedDayTD.style.backgroundColor =(calendar.selectedDayTD.isToday)? calendar.colors["cur_bg"] : calendar.colors["td_bg_out"]; } this.style.backgroundColor = calendar.colors["sel_bg"]; calendar.day = this.innerHTML; calendar.selectedDayTD = this; // 2009-03-03 记录已选中的日子 } } tds[i].style.cursor ="pointer"; // 2007-08-06 由寒羽枫添加,鼠标变成手指状 tds[i].onmouseover = function () { this.style.backgroundColor = calendar.colors["td_bg_over"]; } tds[i].onmouseout = function () { if(calendar.selectedDayTD != this) { this.style.backgroundColor = calendar.colors[this.bgColorTxt];} } tds[i].onblur = function () {calendar.onblur();} } } } // 根据年、月得到月视图数据(数组形式) Calendar.prototype.getMonthViewArray = function (y, m) { var mvArray = []; var dayOfFirstDay = new Date(y, m, 1).getDay(); var daysOfMonth = new Date(y, m + 1, 0).getDate(); for (var i = 0; i < 42; i++) { mvArray[i] = " "; } for (var i = 0; i < daysOfMonth; i++){ mvArray[i + dayOfFirstDay] = i + 1; } return mvArray; } // 扩展 document.getElementById(id) 多浏览器兼容性 from meizz tree source Calendar.prototype.getElementById = function(id){ if (typeof(id) != "string" || id == "") return null; if (document.getElementById) return document.getElementById(id); if (document.all) return document.all(id); try {return eval(id);} catch(e){ return null;} } // 扩展 object.getElementsByTagName(tagName) Calendar.prototype.getElementsByTagName = function(object, tagName){ if (document.getElementsByTagName) return document.getElementsByTagName(tagName); if (document.all) return document.all.tags(tagName); } // 取得HTML控件绝对位置 Calendar.prototype.getAbsPoint = function (e){ var x = e.offsetLeft; var y = e.offsetTop; while(e = e.offsetParent){ x += e.offsetLeft; y += e.offsetTop; } return {"x": x, "y": y}; } // 显示日历 Calendar.prototype.show = function (dateObj, popControl) { if (dateObj == null){ throw new Error("arguments[0] is necessary") } this.dateControl = dateObj; var now = new Date(); this.date = (dateObj.value.length > 0) ? new Date(dateObj.value.toDate(this.dateFormatStyle)) : now.format(this.dateFormatStyle).toDate(this.dateFormatStyle) ;// 2008-01-29 // 寒羽枫添加 // → // 若为空则根据dateFormatStyle初始化日期 if(this.panel.innerHTML==""||cal.dateFormatStyleOld != cal.dateFormatStyle)// 2008-01-29 // 把构造表格放在此处,2009-03-03 // 若请示的样式改变,则重新初始化 { this.draw(); this.bindYear(); this.bindMonth(); this.bindHour(); this.bindMinute(); this.bindSecond(); } this.year = this.date.getFullYear(); this.month = this.date.getMonth(); this.day = this.date.getDate(); this.hour = this.date.getHours(); this.minute = this.date.getMinutes(); this.second = this.date.getSeconds(); this.changeSelect(); this.bindData(); if (popControl == null){ popControl = dateObj; } var xy = this.getAbsPoint(popControl); // this.panel.style.left = xy.x + "px"; // this.panel.style.top = (xy.y + dateObj.offsetHeight) + "px"; this.panel.style.left = (xy.x + leftX)+ "px"; // 由寒羽枫 2007-02-11 修改 → 加入自定义偏移量 this.panel.style.top = (xy.y + topY + dateObj.offsetHeight) + "px"; // 由寒羽枫 2006-06-25 修改 → 把 visibility 变为 display,并添加失去焦点的事件 // //this.setDisplayStyle("select", "hidden"); // this.panel.style.visibility = "visible"; // this.container.style.visibility = "visible"; this.panel.style.display = ""; this.container.style.display = ""; if( !this.dateControl.isTransEvent) { this.dateControl.isTransEvent = true; /* * 已写在返回值的时候 ReturnDate 函数中,去除验证事件的函数 this.dateControl.changeEvent = * this.dateControl.onchange;//将 onchange 转成其它函数,以免触发验证事件 * this.dateControl.onchange = function() {if(typeof(this.changeEvent) * =='function'){this.changeEvent();}} */ if(this.dateControl.onblur != null){ this.dateControl.blurEvent = this.dateControl.onblur;}// 2007-09-14 // 保存主文本框的 onblur // ,使其原本的事件不被覆盖 this.dateControl.onblur = function() {calendar.onblur();if(typeof(this.blurEvent) =='function'){this.blurEvent();} } } this.container.onmouseover = function(){isFocus=true;} this.container.onmouseout = function(){isFocus=false;} } // 隐藏日历 Calendar.prototype.hide = function() { // this.setDisplayStyle("select", "visible"); // this.panel.style.visibility = "hidden"; // this.container.style.visibility = "hidden"; this.panel.style.display = "none"; this.container.style.display = "none"; isFocus=false; } // 焦点转移时隐藏日历 → 由寒羽枫 2006-06-25 添加 Calendar.prototype.onblur = function() { if(!isFocus){this.hide();} } // 以下由寒羽枫 2007-07-26 修改 → 确保日历容器节点在 body 最后,否则 FireFox 中不能出现在最上方 function InitContainerPanel() // 初始化容器 { var str = '<div id="calendarPanel" style="position: absolute;display: none;z-index:9999; background-color: #FFFFFF;border: 1px solid #CCCCCC;width:175px;font-size:12px;"></div>'; if(document.all) { str += '<iframe style="position:absolute;z-index:2000;width:expression(this.previousSibling.offsetWidth);'; str += 'height:expression(this.previousSibling.offsetHeight);'; str += 'left:expression(this.previousSibling.offsetLeft);top:expression(this.previousSibling.offsetTop);'; str += 'display:expression(this.previousSibling.style.display);" scrolling="no" frameborder="no"></iframe>'; } var div = document.createElement("div"); div.innerHTML = str; div.id = "ContainerPanel"; div.style.display ="none"; document.body.appendChild(div); }// 调用calendar.show(dateControl, popControl);
demo.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> <script type="text/javascript" src="js/calendar.js"></script> </head> <body> <form name="form1" method="post" action="WebForm1.aspx" id="form1"> <input type="text" value="" maxlength="100" id="Txt_CreateDateST01" onclick="SelectDate(this,'yyyy 年')" readonly="true" style="width: 265px; cursor: pointer" /><br /> <input type="text" value="" maxlength="100" id="Txt_CreateDateST02" onclick="SelectDate(this,'yyyy 年 MM 月')" readonly="true" style="width: 265px; cursor: pointer" /><br /> <input type="text" value="" maxlength="100" id="Txt_CreateDateST03" onclick="SelectDate(this,'yyyy//MM//dd')" readonly="true" style="width: 265px; cursor: pointer" /><br /> <input type="text" value="" maxlength="100" id="Text1" onclick="SelectDate(this,'yyyy-MM-dd hh时')" readonly="true" style="width: 265px; cursor: pointer" /><br /> <input type="text" value="" maxlength="100" id="Text3" onclick="SelectDate(this,'yyyy-MM-dd hh:mm')" readonly="true" style="width: 265px; cursor: pointer" /><br /> <input type="text" value="" maxlength="100" id="Text4" onclick="SelectDate(this,'yyyy年MM月dd日 hh时mm分ss秒',0,-150)" readonly="true" style="width: 265px; cursor: pointer" /><br /> </form> </body> </html>
引自:http://blog.csdn.net/cityhunter172/article/details/3957836
- calendar.zip (7.3 KB)
- 下载次数: 34
- demo.zip (672 Bytes)
- 下载次数: 30
发表评论
-
Checkbox
2015-05-27 09:54 0$("input[name='orgId'][c ... -
URL传递中文参数乱码问题
2014-03-14 12:55 1149项目特殊要求,form表单使用get方式提交,由此出现了中文乱 ... -
struts2-json-plugin插件的使用
2013-09-21 19:44 5863一、编写Action类/** * AjaxJsonActi ... -
struts2异步访问
2013-09-21 17:18 2632一、编写异步Action代码/** * Ajax1Acti ... -
跨站脚本漏洞(XSS)示例
2012-12-27 17:51 2206index.jsp <%@ page language= ... -
Javascript异步编程的4种方法
2012-12-26 09:11 926http://www.ruanyifeng.com/blog/ ... -
js实现年月日三级下拉菜单联动
2012-06-20 09:55 2324效果图: 完整代码: <html> &l ... -
QuickValidate 是一个简单易扩展的表单验证插件
2012-06-11 09:32 1055http://www.onextrapixel.com/201 ... -
关闭页面之前传递数据到父页面
2012-05-15 12:29 0<script type="text/java ... -
highcharts的导出功能
2012-05-02 11:31 3806package cn.com.songjy.servlet; ... -
Automation 服务器不能创建对象
2012-03-07 09:14 2190<script type="text/java ... -
js 截取字符串 一个中文长度为2
2012-02-08 13:38 2289<script> /* //截取字符串 包 ... -
jquery判断字符输入个数(数字英文长度记为1,中文记为2,超过长度自动截
2012-02-03 09:32 3411<!DOCTYPE HTML PUBLIC " ... -
既可以输入又可以选择菜单 JavaScript
2010-11-19 11:09 1796例子1 <%@ page contentType=&qu ... -
三级联动 多级联动 JavaScript
2010-11-19 09:46 838<%@ page contentType="t ... -
JSP 动态时间 JavaScript
2010-11-16 11:46 1109<%@ page language="java ...
相关推荐
"simplecalendar.js"是一款轻量级、易用且功能丰富的JavaScript日历插件,专为开发者设计,用于快速集成到各种Web应用中,实现事件记录与展示的功能。本文将深入探讨其核心特点、使用方法以及如何自定义和扩展。 一...
本文将深入探讨名为"calendar.js"的JavaScript日历插件,它允许用户轻松地设置开始日期和结束日期,并提供了丰富的回调和事件设置功能,使得在手机页面上的应用更加便捷。 首先,让我们理解什么是calendar.js。...
`myCalendar.js`是一款小巧而功能强大的JavaScript库,专为创建日历年月日时分秒控件而设计。本文将深入探讨`myCalendar.js`的原理、使用方法及其在实际项目中的应用。 一、`myCalendar.js`概述 `myCalendar.js`的...
这里我们关注的是一个名为"Calendar3"的日历控件,它以JavaScript实现,提供了丰富的功能和定制性。`Calendar3.js`是一个轻量级但功能强大的库,用于在网页中创建交互式的日历组件。`Calendar3-master.zip`是一个...
WebCalendar是一款基于JavaScript的网页日历控件,它允许用户在网页上方便地选择和操作日期,极大地提升了用户在网页上的交互体验。这个控件主要适用于那些需要在网页上进行日期输入或者事件管理的应用,例如在线...
`jQuery Calendar.js`是一款基于JavaScript库`jQuery`的插件,用于实现日历选择功能,同时它具有节日显示的功能,增强了用户体验。这个控件能够帮助用户在网页上方便地选择日期,常见于在线预订系统、事件安排或者...
《js日历控件calendar.js详解与应用》 在网页开发中,日历控件是一种常见且实用的交互元素,它能帮助用户方便地选择日期,常用于表单填写、事件预订等场景。本文将围绕“js日历控件calendar.js”进行详细讲解,包括...
本文将深入探讨名为`dateWidget.js`的日历控件,该控件是JavaScript实现的一个常见日期选择组件。 一、JavaScript与日历控件 JavaScript是一种轻量级的脚本语言,广泛应用于网页动态效果和交互设计。由于浏览器...
`calendar.js`是一个轻量级的JavaScript日历插件,旨在提供一个简单且高效的方式来在网页上展示和选择日期。这个插件允许用户通过点击特定的文字或按钮,弹出一个日历窗口,方便他们进行日期选择。该插件具有良好的...
《全面解析:一款高效兼容的JS日历控件》 在网页开发中,日历控件是不可或缺的一部分,尤其在处理日期输入、事件安排或时间管理等场景中。今天我们将深入探讨一个轻量级且兼容性极佳的JS日历控件,这款控件大小不到...
结合jQuery Lunar Calendar,我们可以快速地在网页上添加一个功能完备的日历控件。 该插件的核心特性包括: 1. **万年范围**:覆盖公元0年至9999年的日期选择,满足了长期计划和历史记录的需求。 2. **农历显示**...
js 日历控件 calendar,js 日历控件 calendar,js 日历控件 calendar,js 日历控件 calendar,js 日历控件 calendar,js 日历控件 calendar
**JavaScript日历控件JSCalendar-1.0详解** JSCalendar-1.0是一款基于JavaScript实现的日历控件,适用于网页应用中日期选择的需求。这个控件因其易用性和灵活性而广受喜爱,特别是在.NET开发环境中。它不仅提供基本...
总之,JavaScript日历控件是一个结合了前端技术与用户体验设计的组件,通过JavaScript的动态特性,我们可以创建功能丰富、用户友好的日期选择工具。在实际项目中,还可以考虑与其他库(如jQuery、React或Vue)集成,...
本文将详述“js-calendar-473”这个资源,它是一个JavaScript日历控件,提供了三种不同的样式,旨在为网页添加美观且实用的日历功能。 首先,日历控件在网页应用中十分常见,例如用于事件安排、日期选择、预订系统...
日历控件calendar.js,用于javascript入门与提高的学习与参考
接下来,我们需要创建一个HTML元素作为日历控件的容器。可以使用`<div>`标签,并为其指定一个ID,以便在JavaScript中引用: ```html <div id="calendar"> ``` 然后,在页面加载完成后,我们需要调用`Calendar.js`...
标题"Qt-Qml-Calendar_qml_QT_qml日历控件_calendar_"指的是一个专门用于创建日历组件的QML项目。这个项目可能包含了完整的源代码、示例和文档,帮助开发者快速理解和应用QML日历控件到他们的Qt应用程序中。 描述中...
本文将详细解析标题为“实用的小的日历控件Calendar.rar”的资源,探讨日历控件的基本概念、功能、应用场景,以及如何在实际开发中使用。 日历控件(Calendar Control)是一种图形用户界面组件,它允许用户直观地...