/**
@Name : jeDate v3.6 日期控件
@Author: chen guojun
@Date: 2016-18-8
@QQ群:516754269
@官网:http://www.jayui.com/jedate/ 或 https://github.com/singod/jeDate
*/
window.console && (console = console || {log : function(){return;}});
;(function(root, factory) {
//amd
if (typeof define === 'function' && define.amd) {
define(['$'], factory);
} else if (typeof exports === 'object') { //umd
module.exports = factory();
} else {
root.jeDate = factory(window.jQuery || $);
}
})(this, function($) {
var jet = {}, doc = document, ymdMacth = /\w+|d+/g, parseInt = function (n) { return window.parseInt(n, 10);},
config = {
skinCell:"jedateblue",
format:"YYYY-MM-DD hh:mm:ss", //日期格式
minDate:"1900-01-01 00:00:00", //最小日期
maxDate:"2099-12-31 23:59:59" //最大日期
};
$.fn.jeDate = function(options){
return this.each(function(){
return new jeDate($(this),options||{});
});
};
$.extend({
jeDate:function(elem, options){
return $(elem).each(function(){
return new jeDate($(this),options||{});
});
}
});
jet.docScroll = function(type) {
type = type ? "scrollLeft" :"scrollTop";
return doc.body[type] | doc.documentElement[type];
};
jet.winarea = function(type) {
return doc.documentElement[type ? "clientWidth" :"clientHeight"];
};
jet.isShow = function(elem, bool) {
elem.css({display: bool != true ? "none" :"block"});
};
//判断是否闰年
jet.isLeap = function(y) {
return (y % 100 !== 0 && y % 4 === 0) || (y % 400 === 0);
}
//获取本月的总天数
jet.getDaysNum = function(y, m) {
var num = 31;
switch (parseInt(m)) {
case 2:
num = jet.isLeap(y) ? 29 : 28; break;
case 4: case 6: case 9: case 11:
num = 30; break;
}
return num;
}
//获取月与年
jet.getYM = function(y, m, n) {
var nd = new Date(y, m - 1);
nd.setMonth(m - 1 + n);
return {
y: nd.getFullYear(),
m: nd.getMonth() + 1
};
}
//获取上个月
jet.getPrevMonth = function(y, m, n) {
return jet.getYM(y, m, 0 - (n || 1));
}
//获取下个月
jet.getNextMonth = function(y, m, n) {
return jet.getYM(y, m, n || 1);
}
//补齐数位
jet.digit = function(num) {
return num < 10 ? "0" + (num | 0) :num;
};
//判断是否为数字
jet.IsNum = function(str){
return (str!=null && str!="") ? !isNaN(str) : false;
}
//转换日期格式
jet.parse = function(ymd, hms, format) {
ymd = ymd.concat(hms);
var hmsCheck = jet.parseCheck(format, false).substring(0, 5) == "hh:mm", num = 2;
return format.replace(/YYYY|MM|DD|hh|mm|ss/g, function(str, index) {
var idx = hmsCheck ? ++num :ymd.index = ++ymd.index | 0;
return jet.digit(ymd[idx]);
});
};
jet.parseCheck = function(format, bool) {
var ymdhms = [];
format.replace(/YYYY|MM|DD|hh|mm|ss/g, function(str, index) {
ymdhms.push(str);
});
return ymdhms.join(bool == true ? "-" :":");
};
jet.checkFormat = function(format) {
var ymdhms = [];
format.replace(/YYYY|MM|DD|hh|mm|ss/g, function(str, index) {
ymdhms.push(str);
});
return ymdhms.join("-");
};
jet.parseMatch = function(str) {
var timeArr = str.split(" ");
return timeArr[0].match(ymdMacth);
};
//验证日期
jet.checkDate = function (date) {
var dateArr = date.match(ymdMacth);
if (isNaN(dateArr[0]) || isNaN(dateArr[1]) || isNaN(dateArr[2])) return false;
if (dateArr[1] > 12 || dateArr[1] < 1) return false;
if (dateArr[2] < 1 || dateArr[2] > 31) return false;
if ((dateArr[1] == 4 || dateArr[1] == 6 || dateArr[1] == 9 || dateArr[1] == 11) && dateArr[2] > 30) return false;
if (dateArr[1] == 2) {
if (dateArr[2] > 29) return false;
if ((dateArr[0] % 100 == 0 && dateArr[0] % 400 != 0 || dateArr[0] % 4 != 0) && dateArr[2] > 28) return false;
}
return true;
}
//初始化日期
jet.initDates = function(num, format) {
format = format || 'YYYY-MM-DD hh:mm:ss';
if(typeof num === "string"){
var newDate = new Date(parseInt(num.substring(0,10)) * 1e3);
}else{
num = num | 0;
var newDate = new Date(), todayTime = newDate.getTime() + 1000*60*60*24*num;
newDate.setTime(todayTime);
}
var years = newDate.getFullYear(), months = newDate.getMonth() + 1, days = newDate.getDate(), hh = newDate.getHours(), mm = newDate.getMinutes(), ss = newDate.getSeconds();
return jet.parse([ years, jet.digit(months), jet.digit(days) ], [ jet.digit(hh), jet.digit(mm), jet.digit(ss) ], format);
};
jet.montharr = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 ];
jet.weeks = [ "一", "二", "三", "四", "五", "六", "日"];
//判断元素类型
jet.isValHtml = function(that) {
return /textarea|input/.test(that[0].tagName.toLocaleLowerCase());
};
jet.isBool = function(obj){ return (obj == undefined || obj == true ? true : false); };
jet.addDateTime = function(time,num,type,format){
var ishhmm = jet.checkFormat(format).substring(0, 5) == "hh-mm" ? true :false;
var nocharDate = ishhmm ? time.replace(/^(\d{2})(?=\d)/g,"$1,") : time.substr(0,4).replace(/^(\d{4})/g,"$1,") + time.substr(4).replace(/^(\d{2})(?=\d)/g,"$1,");
var tarr = jet.IsNum(time) ? nocharDate.match(ymdMacth) : time.match(ymdMacth), date = new Date(),
tm0 = parseInt(tarr[0]), tm1 = tarr[1] == undefined ? date.getMonth() + 1 : parseInt(tarr[1]), tm2 = tarr[2] == undefined ? date.getDate() : parseInt(tarr[2]),
tm3 = tarr[3] == undefined ? date.getHours() : parseInt(tarr[3]), tm4 = tarr[4] == undefined ? date.getMinutes() : parseInt(tarr[4]), tm5 = tarr[5] == undefined ? date.getMinutes() : parseInt(tarr[5]);
var newDate = new Date(tm0,jet.digit(tm1)-1,(type == "DD" ? tm2 + num : tm2),(type == "hh" ? tm3 + num : tm3),(type == "mm" ? tm4 + num : tm4),jet.digit(tm5));
return jet.parse([ newDate.getFullYear(), newDate.getMonth()+1, newDate.getDate() ], [ newDate.getHours(), newDate.getMinutes(), newDate.getSeconds() ], format);
}
jet.boxCell = "#jedatebox";
function jeDate(elem, opts){
this.opts = opts;
this.valCell = elem;
this.init();
}
var jedfn = jeDate.prototype;
jedfn.init = function(){
//console.log(this)
var that = this, opts = that.opts, zIndex = opts.zIndex == undefined ? 2099 : opts.zIndex,
isinitVal = (opts.isinitVal == undefined || opts.isinitVal == false) ? false : true,
createDiv = $("
0) return;
jet.format = that.opts.format || config.format;
jet.minDate = that.opts.minDate || config.minDate;
jet.maxDate = that.opts.maxDate || config.maxDate;
$("body").append(createDiv);
that.setHtml(that.opts);
});
}else {
jet.format = that.opts.format || config.format;
jet.minDate = that.opts.minDate || config.minDate;
jet.maxDate = that.opts.maxDate || config.maxDate;
$("body").append(createDiv);
that.setHtml(that.opts);
}
};
//方位辨别
jedfn.orien = function(obj, self, pos) {
var tops, leris, ortop, orleri, rect = jet.fixed ? self[0].getBoundingClientRect() : obj[0].getBoundingClientRect();
if(jet.fixed) {
leris = rect.right + obj.outerWidth() / 1.5 >= jet.winarea(1) ? rect.right - obj.outerWidth() : rect.left + (pos ? 0 : jet.docScroll(1));
tops = rect.bottom + obj.outerHeight() / 1 <= jet.winarea() ? rect.bottom - 1 : rect.top > obj.outerHeight() / 1.5 ? rect.top - obj.outerHeight() - 1 : jet.winarea() - obj.outerHeight();
ortop = Math.max(tops + (pos ? 0 :jet.docScroll()) + 1, 1) + "px", orleri = leris + "px";
}else{
ortop = "50%", orleri = "50%";
obj.css({"margin-top":-(rect.height / 2),"margin-left":-(rect.width / 2)});
}
obj.css({"top":ortop,"left":orleri});
};
//关闭层
jedfn.dateClose = function() {
$(jet.boxCell).remove();
};
//布局控件骨架
jedfn.setHtml = function(opts){
var that = this, elemCell = that.valCell, boxCell = $(jet.boxCell);
var weekHtml = "", tmsArr = "", date = new Date(), dateFormat = jet.checkFormat(jet.format),
isYYMM = (dateFormat == "YYYY-MM" || dateFormat == "YYYY") ? true :false, ishhmm = dateFormat.substring(0, 5) == "hh-mm" ? true :false;
if ((elemCell.val() || elemCell.text()) == "") {
tmsArr = [ date.getFullYear(), date.getMonth() + 1, date.getDate(), date.getHours(), date.getMinutes(), date.getSeconds() ];
jet.currDate = new Date(tmsArr[0], parseInt(tmsArr[1])-1, tmsArr[2], tmsArr[3], tmsArr[4], tmsArr[5]);
jet.ymdDate = tmsArr[0] + "-" + jet.digit(tmsArr[1]) + "-" + jet.digit(tmsArr[2]);
} else {
var initVal = jet.isValHtml(elemCell) ? elemCell.val() : elemCell.text();
//对获取到日期的进行替换
var nocharDate = ishhmm ? initVal.replace(/^(\d{2})(?=\d)/g,"$1,") : initVal.substr(0,4).replace(/^(\d{4})/g,"$1,") + initVal.substr(4).replace(/^(\d{2})(?=\d)/g,"$1,");
//判断是否为数字类型,并分割
var inVals = jet.IsNum(initVal) ? nocharDate.match(ymdMacth) : initVal.match(ymdMacth);
if(ishhmm){
tmsArr = dateFormat == "hh-mm" ? [ inVals[0], inVals[1], date.getSeconds() ] :[ inVals[0], inVals[1], inVals[2] ];
jet.currDate = new Date(date.getFullYear(), date.getMonth()-1, date.getDate());
}else{
tmsArr = [ inVals[0], inVals[1], inVals[2], inVals[3] == undefined ? date.getHours() : inVals[3], inVals[4] == undefined ? date.getMinutes() : inVals[4], inVals[5] == undefined ? date.getSeconds() :inVals[5] ];
jet.currDate = new Date(tmsArr[0], parseInt(tmsArr[1])-1, tmsArr[2], tmsArr[3], tmsArr[4], tmsArr[5]);
jet.ymdDate = tmsArr[0] + "-" + jet.digit(tmsArr[1]) + "-" + jet.digit(tmsArr[2]);
}
}
jet.currMonth = tmsArr[1], jet.currDays = tmsArr[2];
//控件HMTL模板
var datetopStr = '' + (!isYYMM ? '
' + '
' :'
') + "
";
var dateymList = !isYYMM ? '" :(dateFormat == "YYYY" ? '' : '');
var dateriList = '
';
var bothmsStr = !isYYMM ? '' + '添加时间确认清空
' :(dateFormat == "YYYY" ? '确认清空
' : '确认本月清空
');
var datebotStr = '' + bothmsStr + "
";
var datehmschoose = '';
var dateHtmStr = isYYMM ? datetopStr + dateymList + datebotStr :ishhmm ? datetopStr + datehmschoose + datebotStr :datetopStr + dateymList + dateriList + datehmschoose + datebotStr;
boxCell.html(dateHtmStr);
if(that.opts.isTime){
boxCell.find(".dataSelectAdd").text("取消")
}else{
boxCell.find(".dataSelectAdd").text("时间")
}
//是否显示清除按钮
jet.isBool(opts.isClear) ? "" : jet.isShow(boxCell.find(".jedatebot .jedateclear"), false);
//是否显示今天按钮
if(!isYYMM){
jet.isBool(opts.isToday) ? "" : jet.isShow(boxCell.find(".jedatebot .jedatetodaymonth"), false);
};
//判断是否有时分秒
if(/\hh-mm/.test(dateFormat)){
var isTimehms = function(bool) {
if(elemCell.val() != "" || elemCell.text() != "") {
var hmsArrs = bool ? [ tmsArr[0], tmsArr[1], tmsArr[2] ] : [ tmsArr[3], tmsArr[4], tmsArr[5] ];
}else{
var hmsArrs = [ jet.currDate.getHours(), jet.currDate.getMinutes(), jet.currDate.getSeconds() ];
}
boxCell.find(".jedatebot .jedatehms input").each(function(i) {
$(this).val(jet.digit(hmsArrs[i]));
jet.isBool(opts.ishmsVal) ? "" : $(this).attr("readOnly",'true');
});
};
console.log(ishhmm);
if(ishhmm){
isTimehms(true);
boxCell.find(".jedateyear").text(jet.currDate.getFullYear() + '年');
boxCell.find(".jedatemonth").text(jet.digit(jet.currDate.getMonth() + 1) + '月');
}else{
if(jet.isBool(opts.isTime)){
isTimehms(false);
}else{
jet.isShow(boxCell.find(".jedatebot .jedatehmsshde"), false);
boxCell.find(".jedatebot .jedatebtn").css("width" , "100%");
}
}
}else{
if (!isYYMM) jet.isShow(boxCell.find(".jedatebot .jedatehmsshde"), false);
boxCell.find(".jedatebot .jedatebtn").css("width" , "100%");
};
//判断是否为年月类型
if(/\YYYY-MM-DD/.test(dateFormat)){
$.each(jet.weeks, function(i, week) {
weekHtml += '' + week + "";
});
boxCell.find(".jedaol").html(weekHtml);
that.createDaysHtml(jet.currDate.getFullYear(), jet.currDate.getMonth()+1, opts);
that.chooseYM(opts);
};
if(isYYMM){
var monthCls = boxCell.find(".jedateym .jedateyearmonth");
if(dateFormat == "YYYY"){
monthCls.attr("data-onyy",tmsArr[0]).text(tmsArr[0] + "年");
boxCell.find(".jedayy").html(that.onlyYear(tmsArr[0]));
}else{
monthCls.attr("data-onym",tmsArr[0]+"-"+jet.digit(tmsArr[1])).text(tmsArr[0] + "年" + parseInt(tmsArr[1]) + "月");
boxCell.find(".jedaym").html(that.onlyYMStr(tmsArr[0], parseInt(tmsArr[1])));
}
that.onlyYMevents(tmsArr,opts);
}
that.orien(boxCell, elemCell);
setTimeout(function () {
opts.success && opts.success(elemCell);
}, 2);
that.events(tmsArr, opts);
};
//循环生成日历
jedfn.createDaysHtml = function(ys, ms, opts){
var that = this, elemCell = that.valCell, boxCell = $(jet.boxCell);
var year = parseInt(ys), month = parseInt(ms), dateHtml = "",count = 0;
var minArr = jet.minDate.match(ymdMacth), minNum = minArr[0] + minArr[1] + minArr[2],
maxArr = jet.maxDate.match(ymdMacth), maxNum = maxArr[0] + maxArr[1] + maxArr[2];
boxCell.find(".jedaul").html(""); //切忌一定要把这个内容去掉,要不然会点一次翻页都在日历下面依次显示出来
var firstWeek = new Date(year, month - 1, 1).getDay() || 7,
daysNum = jet.getDaysNum(year, month), prevM = jet.getPrevMonth(year, month),
prevDaysNum = jet.getDaysNum(year, prevM.m), nextM = jet.getNextMonth(year, month),
currOne = jet.currDate.getFullYear() + "-" + jet.digit(jet.currDate.getMonth() + 1) + "-" + jet.digit(1),
thisOne = year + "-" + jet.digit(month) + "-" + jet.digit(1);
boxCell.find(".jedateyear").attr("year", year).text(year + '年');
boxCell.find(".jedatemonth").attr("month", month).text(month + '月');
//设置时间标注
var mark = function (my, mm, md) {
var Marks = opts.marks, contains = function(arr, obj) {
var len = arr.length;
while (len--) {
if (arr[len] === obj) return true;
}
return false;
};
return $.isArray(Marks) && Marks.length > 0 && contains(Marks, my + "-" + jet.digit(mm) + "-" + jet.digit(md)) ? '' :"";
}
//是否显示节日
var isfestival = function(y, m ,d) {
var festivalStr;
if(opts.festival == true){
var lunar = jeLunar(y, m - 1, d), feslunar = (lunar.solarFestival || lunar.lunarFestival),
lunartext = (feslunar && lunar.jieqi) != "" ? feslunar : (lunar.jieqi || lunar.showInLunar);
festivalStr = '' + d + '' + lunartext + '
';
}else{
festivalStr = '' + d + '
';
}
return festivalStr;
};
//判断是否在限制的日期之中
var dateOfLimit = function(Y, M, D, isMonth){
var thatNum = (Y + "-" + jet.digit(M) + "-" + jet.digit(D)).replace(/\-/g, '');
if(isMonth){
if (parseInt(thatNum) >= parseInt(minNum) && parseInt(thatNum) <= parseInt(maxNum)) return true;
}else {
if (parseInt(minNum) > parseInt(thatNum) || parseInt(maxNum) < parseInt(thatNum)) return true;
}
}
//上一月剩余天数
for (var p = prevDaysNum - firstWeek + 2; p <= prevDaysNum; p++, count++) {
var pmark = mark(prevM.y,prevM.m,p), pCls = dateOfLimit(prevM.y, prevM.m, p, false) ? "disabled" : "other";
dateHtml += ''+(isfestival(prevM.y,prevM.m,p) + pmark)+'';
}
//本月的天数
for(var b = 1; b <= daysNum; b++, count++){
var bCls = "", bmark = mark(year,month,b),
thisDate = (year + "-" + jet.digit(month) + "-" + jet.digit(b)); //本月当前日期
if(dateOfLimit(year, month, b, true)){
bCls = jet.ymdDate == thisDate ? "action" : (currOne != thisOne && thisOne == thisDate ? "action" : "");
}else{
bCls = "disabled";
}
dateHtml += ''+(isfestival(year,month,b) + bmark)+'';
}
//下一月开始天数
for(var n = 1, nlen = 42 - count; n <= nlen; n++){
var nmark = mark(nextM.y,nextM.m,n), nCls = dateOfLimit(nextM.y, nextM.m, n, false) ? "disabled" : "other";
dateHtml += ''+(isfestival(nextM.y,nextM.m,n) + nmark)+'';
}
//把日期拼接起来并插入
boxCell.find(".jedaul").html(dateHtml);
that.chooseDays(opts);
};
//循环生成年月(YYYY-MM)
jedfn.onlyYMStr = function(y, m) {
var onlyYM = "";
$.each(jet.montharr, function(i, val) {
var minArr = jet.parseMatch(jet.minDate), maxArr = jet.parseMatch(jet.maxDate),
thisDate = new Date(y, jet.digit(val), "01"), minTime = new Date(minArr[0], minArr[1], minArr[2]), maxTime = new Date(maxArr[0], maxArr[1], maxArr[2]);
if (thisDate < minTime || thisDate > maxTime) {
onlyYM += "" + y + "年" + jet.digit(val) + "月";
} else {
onlyYM += "' + y + "年" + jet.digit(val) + "月";
}
});
return onlyYM;
};
//循环生成年(YYYY)
jedfn.onlyYear = function(YY) {
var onlyStr = "";
jet.yearArr = new Array(15);
$.each(jet.yearArr, function(i) {
var minArr = jet.parseMatch(jet.minDate), maxArr = jet.parseMatch(jet.maxDate),
minY = minArr[0], maxY = maxArr[0], yyi = YY - 7 + i,
getyear = $(jet.boxCell).find(".jedateym .jedateyearmonth").attr("data-onyy");
if (yyi < minY || yyi > maxY) {
onlyStr += "" + yyi + "年";
} else {
onlyStr += "" + yyi + "年";
}
});
return onlyStr;
};
//生成定位时分秒
jedfn.setStrhms = function(opts) {
var that = this, boxCell = $(jet.boxCell);
var parseFormat = jet.format, hmsArr = [], hmsliCls = boxCell.find(".jedatehms li"),
proptextCls = boxCell.find(".jedatepropcon .jedateproptext"), propconCls = boxCell.find(".jedatepropcon .jedatehmscon");
var parsehms = function(str) {
var ymdstr = str.match(ymdMacth).join("-"), timeArr = ymdstr == "YYYY-MM-DD-hh-mm" ? str.split(" ") : ymdstr,
isHMtime = ymdstr == "YYYY-MM-DD-hh-mm" ? timeArr[1] :timeArr;
return isHMtime.match(ymdMacth).join("-");
};
var parmathm = parsehms(parseFormat) == "hh-mm";
if(parmathm){
var hmsliWidth = hmsliCls.css('width').replace(/\px|em|rem/g,''), hmsiW = boxCell.find(".jedatehms i").css('width').replace(/\px|em|rem/g,''),
hmschoseW = proptextCls.css('width').replace(/\px|em|rem/g,''), hmslival = Math.round(parseInt(hmsliWidth) + parseInt(hmsliWidth)/2 + parseInt(hmsiW)/2);
hmsliCls[0].style.width = hmsliCls[1].style.width = hmslival + "px";
proptextCls[0].style.width = proptextCls[1].style.width = propconCls[0].style.width = propconCls[1].style.width = Math.round(parseInt(hmschoseW) + parseInt(hmschoseW)/2 + 2) + "px";
}
//生成时分秒
$.each([ 24, 60, 60 ], function(i, len) {
var hmsStr = "", hmsCls = "", inputCls = boxCell.find(".jedatehms input"), textem = inputCls.eq(i).val();
inputCls.eq(i).attr("maxlength",2).attr("numval",len-1).attr("item",i);
for (var h = 0; h < len; h++) {
h = jet.digit(h);
if (opts.ishmsLimit) {
hmsCls = h < textem ? "disabled" :h == textem ? "action" :"";
} else {
hmsCls = parmathm && i == 2 ? textem == h ? "disabled action" :"disabled" :textem == h ? "action" :"";
if(parmathm && i == 2){
var readCls = hmsliCls.eq(2);
readCls.css({"display":"none"}).prev().css({"display":"none"});
proptextCls.eq(i).css({"display":"none"});
propconCls.eq(i).css({"display":"none"});
}
}
hmsStr += '' + h + "
";
}
hmsArr.push(hmsStr);
});
return hmsArr;
};
//仅年月情况下的点击
jedfn.onlyYMevents = function(tmsArr, opts) {
var that = this, boxCell = $(jet.boxCell);
var ymVal, ymPre = boxCell.find(".jedateym .ymprev"), ymNext = boxCell.find(".jedateym .ymnext"), ony = parseInt(tmsArr[0]), onm = parseFloat(tmsArr[1]);
$.each([ ymPre, ymNext ], function(i, cls) {
cls.on("click", function(ev) {
ev.stopPropagation();
if(jet.checkFormat(jet.format) == "YYYY"){
ymVal = cls == ymPre ? boxCell.find(".jedayy li").attr("yy") : boxCell.find(".jedayy li").eq(jet.yearArr.length-1).attr("yy");
boxCell.find(".jedayy").html(that.onlyYear(parseInt(ymVal)));
}else{
ymVal = cls == ymPre ? ony -= 1 :ony += 1;
boxCell.find(".jedaym").html(that.onlyYMStr(ymVal, onm));
}
that.ymPremNextEvents(opts);
});
});
};
jedfn.nongliorien = function(obj, self, pos) {
var tops, leris, ortop, orleri, rect =self[0].getBoundingClientRect();
leris = rect.right + obj[0].offsetWidth / 1.5 >= jet.winarea(1) ? rect.right - obj[0].offsetWidth : rect.left + (pos ? 0 : jet.docScroll(1));
tops = rect.bottom + obj[0].offsetHeight / 1 <= jet.winarea() ? rect.bottom - 1 : rect.top > obj[0].offsetHeight / 1.5 ? rect.top - obj[0].offsetHeight - 1 : jet.winarea() - obj[0].offsetHeight;
ortop = Math.max(tops + (pos ? 0 :jet.docScroll()) + 1, 1) + "px", orleri = leris + "px";
return {top: ortop, left: orleri }
};
//选择日期
jedfn.chooseDays = function(opts) {
var that = this, elemCell = that.valCell, boxCell = $(jet.boxCell);
boxCell.find(".jedaul li").on("click", function(ev) {
var _that = $(this), liTms = [];
if (_that.hasClass("disabled")) return;
ev.stopPropagation();
//获取时分秒的集合
boxCell.find(".jedatehms input").each(function() {
liTms.push($(this).val());
});
var aty = parseInt(_that.attr("year")), atm = parseFloat(_that.attr("month")), atd = parseFloat(_that.attr("day")),
getDateVal = jet.parse([ aty, atm, atd ], [ liTms[0], liTms[1], liTms[2] ], jet.format);
jet.isValHtml(elemCell) ? elemCell.val(getDateVal) :elemCell.text(getDateVal);
// elemCell.css({borderColor:"#838383"});
that.dateClose();
opts.festival && $("#jedatetipscon").remove();
if ($.isFunction(opts.choosefun) || opts.choosefun != null) opts.choosefun && opts.choosefun(elemCell,getDateVal);
if ($.isFunction(opts.okfun) || opts.okfun != null) opts.okfun && opts.okfun(elemCell,getDateVal);
});
if(opts.festival) {
//鼠标进入提示框出现
boxCell.find(".jedaul li").on("mouseover", function () {
var _this = $(this), aty = parseInt(_this.attr("year")), atm = parseFloat(_this.attr("month")), atd = parseFloat(_this.attr("day")),
tipDiv = $("",{"id":"jedatetipscon","class":"jedatetipscon"}), lunar = jeLunar(aty, atm - 1, atd);
var tiphtml = '' + lunar.solarYear + '年' + lunar.solarMonth + '月' + lunar.solarDate + '日 ' + lunar.inWeekDays + '
农历:' + lunar.shengxiao + '年 ' + lunar.lnongMonth + '月' + lunar.lnongDate + '
' + lunar.ganzhiYear + '年 ' + lunar.ganzhiMonth + '月 ' + lunar.ganzhiDate + '日
';
var Fesjieri = (lunar.solarFestival || lunar.lunarFestival) != "" ? '' + ("节日:"+lunar.solarFestival + lunar.lunarFestival) + '
' : "";
var Fesjieqi = lunar.jieqi != "" ? ''+(lunar.jieqi != "" ? "节气:"+lunar.jieqi : "") + '
': "";
var tiptext = (lunar.solarFestival || lunar.lunarFestival || lunar.jieqi) != "" ? (Fesjieri + Fesjieqi) : "";
//生成提示框到文档中
$("body").append(tipDiv);
tipDiv.html(tiphtml + tiptext);
//获取并设置农历提示框出现的位置
var tipPos = jedfn.nongliorien(tipDiv, _this);
tipDiv.css({"z-index": (opts.zIndex == undefined ? 2099 + 5 : opts.zIndex + 5),top:tipPos.top,left:tipPos.left,position:"absolute",display:"block"});
}).on( "mouseout", function () { //鼠标移除提示框消失
if($("#jedatetipscon").size() > 0) $("#jedatetipscon").remove();
});
}
};
//下拉选择年和月
jedfn.chooseYM = function(opts) {
var that = this, boxCell = $(jet.boxCell);
var jetopym = boxCell.find(".jedatetopym"), jedateyy = boxCell.find(".jedateyy"), jedatemm = boxCell.find(".jedatemm"), jedateyear = boxCell.find(".jedateyy .jedateyear"),
jedatemonth = boxCell.find(".jedatemm .jedatemonth"), mchri = boxCell.find(".jedateymchri"), mchle = boxCell.find(".jedateymchle"),
ishhmmss = jet.checkFormat(jet.format).substring(0, 5) == "hh-mm" ? true :false;
var minArr = jet.minDate.match(ymdMacth), minNum = minArr[0] + minArr[1],
maxArr = jet.maxDate.match(ymdMacth), maxNum = maxArr[0] + maxArr[1];
//循环生成年
function eachYears(YY) {
var eachStr = "", ycls;
$.each(new Array(15), function(i,v) {
if (i === 7) {
var getyear = jedateyear.attr("year");
ycls = (parseInt(YY) >= parseInt(minArr[0]) && parseInt(YY) <= parseInt(maxArr[0])) ? (getyear == YY ? 'class="action"' :"") : 'class="disabled"';
eachStr += "' + YY + "年";
} else {
ycls = (parseInt(YY - 7 + i) >= parseInt(minArr[0]) && parseInt(YY - 7 + i) <= parseInt(maxArr[0])) ? "" : 'class="disabled"';
eachStr += '' + (YY - 7 + i) + "年";
}
});
return eachStr;
}
//循环生成月
function eachYearMonth(YY, ymlen) {
var ymStr = "";
if (ymlen == 12) {
$.each(jet.montharr, function(i, val) {
var getmonth = jedatemonth.attr("month"), val = jet.digit(val);
var mcls = (parseInt(jedateyear.attr("year") + val) >= parseInt(minNum) && parseInt(jedateyear.attr("year") + val) <= parseInt(maxNum)) ?
(jet.digit(getmonth) == val ? 'class="action"' :"") : 'class="disabled"';
ymStr += "' + val + "月";
});
$.each([ mchri, mchle ], function(c, cls) {
jet.isShow(cls,false);
});
} else {
ymStr = eachYears(YY);
$.each([ mchri, mchle ], function(c, cls) {
jet.isShow(cls,true);
});
}
jetopym.removeClass( ymlen == 12 ? "jedatesety" :"jedatesetm").addClass(ymlen == 12 ? "jedatesetm" :"jedatesety");
boxCell.find(".jedatetopym .ymdropul").html(ymStr);
jet.isShow(jetopym,true);
}
function clickLiYears(year) {
boxCell.find(".ymdropul li").on("click", function(ev) {
var _this = $(this), Years = _this.attr("yy"), Months = parseInt(jedatemonth.attr("month"));
if (_this.hasClass("disabled")) return;
ev.stopPropagation();
year.attr("year", Years).html(Years + '年');
jet.isShow(jetopym,false);
that.createDaysHtml(Years, Months, opts);
});
}
//下拉选择年
!ishhmmss && jedateyy.on("click", function() {
var yythat = $(this), YMlen = parseInt(yythat.attr("ym")), yearAttr = parseInt(jedateyear.attr("year"));
eachYearMonth(yearAttr, YMlen);
clickLiYears(jedateyear);
});
//下拉选择月
!ishhmmss && jedatemm.on("click", function() {
var mmthis = $(this), YMlen = parseInt(mmthis.attr("ym")), yearAttr = parseInt(jedateyear.attr("year"));
eachYearMonth(yearAttr, YMlen);
boxCell.find(".ymdropul li").on("click", function(ev) {
if ($(this).hasClass("disabled")) return;
ev.stopPropagation();
var lithat = $(this), Years = jedateyear.attr("year"), Months = parseInt(lithat.attr("mm"));
jedatemonth.attr("month", Months).html(Months + '月');
jet.isShow(jetopym,false);
that.createDaysHtml(Years, Months, opts);
});
});
//关闭下拉选择
boxCell.find(".jedateymchok").on("click", function(ev) {
ev.stopPropagation();
jet.isShow(jetopym,false);
});
var yearMch = parseInt(jedateyear.attr("year"));
$.each([ mchle, mchri ], function(d, cls) {
cls.on("click", function(ev) {
ev.stopPropagation();
d == 0 ? yearMch -= 15 :yearMch += 15;
var mchStr = eachYears(yearMch);
boxCell.find(".jedatetopym .ymdropul").html(mchStr);
clickLiYears(jedateyear);
});
});
};
//年月情况下的事件绑定
jedfn.ymPremNextEvents = function(opts){
var that = this, elemCell = that.valCell, boxCell = $(jet.boxCell);
var newDate = new Date(), isYY = (jet.checkFormat(jet.format) == "YYYY"), ymCls = isYY ? boxCell.find(".jedayy li") : boxCell.find(".jedaym li");
//选择年月
ymCls.on("click", function (ev) {
if ($(this).hasClass("disabled")) return; //判断是否为禁选状态
ev.stopPropagation();
var atYM = isYY ? $(this).attr("yy").match(ymdMacth) : $(this).attr("ym").match(ymdMacth),
getYMDate = isYY ? jet.parse([atYM[0], newDate.getMonth() + 1, 1], [0, 0, 0], jet.format) : jet.parse([atYM[0], atYM[1], 1], [0, 0, 0], jet.format);
jet.isValHtml(elemCell) ? elemCell.val(getYMDate) : elemCell.text(getYMDate);
// elemCell.css({borderColor:"#838383"});
that.dateClose();
if ($.isFunction(opts.choosefun) || opts.choosefun != null) opts.choosefun(elemCell, getYMDate);
});
};
jedfn.events = function(tmsArr,opts){
var that = this, elemCell = that.valCell, boxCell = $(jet.boxCell);
var newDate = new Date(), yPre = boxCell.find(".yearprev"), yNext = boxCell.find(".yearnext"),
mPre = boxCell.find(".monthprev"), mNext = boxCell.find(".monthnext"),
jedateyear = boxCell.find(".jedateyear"), jedatemonth = boxCell.find(".jedatemonth"),
isYYMM = (jet.checkFormat(jet.format) == "YYYY-MM" || jet.checkFormat(jet.format) == "YYYY") ? true :false,
ishhmmss = jet.checkFormat(jet.format).substring(0, 5) == "hh-mm" ? true :false;
if (!isYYMM) {
//切换年
!ishhmmss && $.each([ yPre, yNext ], function(i, cls) {
cls.on("click", function(ev) {
if(boxCell.find(".jedatetopym").css("display") == "block") return;
ev.stopPropagation();
var year = parseInt(jedateyear.attr("year")),
month = parseInt(jedatemonth.attr("month")),
pnYear = cls == yPre ? --year : ++year,
PrevYM = jet.getPrevMonth(pnYear, month);
if(month == 12){
var NextYM = jet.getNextMonth(pnYear-1, month);
}else{
NextYM = jet.getNextMonth(pnYear, month);
}
cls == yPre ? that.createDaysHtml(PrevYM.y, month, opts) : that.createDaysHtml(NextYM.y, month, opts);
});
});
//切换月
!ishhmmss && $.each([ mPre, mNext ], function(i, cls) {
cls.on("click", function(ev) {
if(boxCell.find(".jedatetopym").css("display") == "block") return;
ev.stopPropagation();
var year = parseInt(jedateyear.attr("year")), month = parseInt(jedatemonth.attr("month")),
PrevYM = jet.getPrevMonth(year, month), NextYM = jet.getNextMonth(year, month);
cls == mPre ? that.createDaysHtml(PrevYM.y, PrevYM.m, opts) : that.createDaysHtml(NextYM.y, NextYM.m, opts);
});
});
//时分秒事件绑定
var hmsStr = that.setStrhms(opts), hmsevents = function(hmsArr) {
$.each(hmsArr, function(i, hmsCls) {
if (hmsCls.html() == "") hmsCls.html(hmsStr[i]);
});
if (ishhmmss) {
jet.isShow(boxCell.find(".jedatehmsclose"), false);
jet.isShow(boxCell.find(".jedatetodaymonth"), false);
} else {
jet.isShow(boxCell.find(".jedateprophms"), true);
}
//计算当前时分秒的位置
$.each([ "hours", "minutes", "seconds" ], function(i, hms) {
var hmsCls = boxCell.find(".jedateprop" + hms), achmsCls = boxCell.find(".jedateprop"+hms+" .action");
hmsCls[0].scrollTop = achmsCls[0].offsetTop - 146;
var onhmsPCls = boxCell.find(".jedateprop" + hms + " p");
onhmsPCls.on("click", function() {
var _this = $(this);
if (_this.hasClass("disabled")) return;
onhmsPCls.each(function() {
$(this).removeClass("action");
});
_this.addClass("action");
boxCell.find(".jedatebot .jedatehms input").eq(i).val(jet.digit(_this.text()));
if (!ishhmmss) jet.isShow(boxCell.find(".jedateprophms"), false);
});
});
};
var hs = boxCell.find(".jedateprophours"), ms = boxCell.find(".jedatepropminutes"), ss = boxCell.find(".jedatepropseconds");
if (ishhmmss) {
hmsevents([ hs, ms, ss ]);
} else {
boxCell.find(".jedatehms").on("click", function() {
if (boxCell.find(".jedateprophms").css("display") !== "block") hmsevents([ hs, ms, ss ]);
//关闭时分秒层
boxCell.find(".jedateprophms .jedatehmsclose").on("click", function() {
jet.isShow(boxCell.find(".jedateprophms"), false);
});
});
}
// 添加时间
boxCell.find(".jedatebot .dataSelectAdd").on("click",function(){
var box = $(jet.boxCell);
if (box && box.css("display") !== "none") box.remove();
var optionDate = {};
if(that.opts.isTime){
optionDate = {
format:"YYYY-MM-DD",
isTime:false
};
}else{
optionDate = {
format:"YYYY-MM-DD hh:mm:ss",
isTime:true
};
}
jeDate.call(that,that.valCell,optionDate);
that.valCell.trigger("click");
});
//今天按钮设置日期时间
//boxCell.find(".jedatebot .jedatetodaymonth").on("click", function() {
// var toTime = [ newDate.getFullYear(), newDate.getMonth() + 1, newDate.getDate(), newDate.getHours(), newDate.getMinutes(), newDate.getSeconds() ],
// gettoDate = jet.parse([ toTime[0], toTime[1], toTime[2] ], [ toTime[3], toTime[4], toTime[5] ], jet.format);
// that.createDaysHtml(toTime[0], toTime[1], opts);
// jet.isValHtml(elemCell) ? elemCell.val(gettoDate) :jet.text(gettoDate);
// elemCell.css({borderColor:"#838383"});
// that.dateClose();
// if ($.isFunction(opts.choosefun) || opts.choosefun != null) opts.choosefun(elemCell,gettoDate);
// if (!isYYMM) that.chooseDays(opts);
//});
}else{
that.ymPremNextEvents(opts);
//本月按钮设置日期时间
//boxCell.find(".jedatebot .jedatetodaymonth").on("click", function(ev) {
// ev.stopPropagation();
// var ymTime = [ newDate.getFullYear(), newDate.getMonth() + 1, newDate.getDate() ],
// YMDate = jet.parse([ ymTime[0], ymTime[1], 0 ], [ 0, 0, 0 ], jet.format);
// jet.isValHtml(elemCell) ? elemCell.val(YMDate) :elemCell.text(YMDate);
// elemCell.css({borderColor:"#838383"});
// that.dateClose();
// if ($.isFunction(opts.choosefun) || opts.choosefun != null) opts.choosefun(elemCell,YMDate);
//});
}
//检查时间输入值,并对应到相应位置
boxCell.find(".jedatehms input").on("keyup", function() {
if(isNaN($(this).val())) return;
var _this = $(this), thatval = _this.val(), hmsVal = parseInt(_this.attr("numval")), thatitem = parseInt(_this.attr("item"));
_this.val(thatval.replace(/\D/g,""));
//判断输入值是否大于所设值
if(thatval > hmsVal){
_this.val(hmsVal);
alert("输入值不能大于"+hmsVal);
}
if(thatval == "") _this.val("00");
boxCell.find(".jedatehmscon").eq(thatitem).children().each(function(){
$(this).removeClass("action");
})
boxCell.find(".jedatehmscon").eq(thatitem).children().eq(parseInt(_this.val().replace(/^0/g,''))).addClass("action");
$.each([ "hours", "minutes", "seconds" ], function(i, hms) {
var hmsCls = boxCell.find(".jedateprop" + hms), achmsCls = boxCell.find(".jedateprop" + hms + " .action");
hmsCls[0].scrollTop = achmsCls[0].offsetTop - 118;
});
});
//清空按钮清空日期时间
boxCell.find(".jedatebot .jedateclear").on("click", function(ev) {
ev.stopPropagation();
var clearVal = jet.isValHtml(elemCell) ? elemCell.val() :elemCell.text();
jet.isValHtml(elemCell) ? elemCell.val("") :elemCell.text("");
// elemCell.css({borderColor:"red"});
that.dateClose();
if (clearVal != "") {
if (jet.isBool(opts.clearRestore)){
jet.minDate = opts.startMin || jet.minDate;
jet.maxDate = opts.startMax || jet.maxDate;
}
if ($.isFunction(opts.clearfun) || opts.clearfun != null) opts.clearfun(elemCell,clearVal);
}
});
//确认按钮设置日期时间
boxCell.find(".jedatebot .jedateok").on("click", function(ev) {
ev.stopPropagation();
var isValtext = (elemCell.val() || elemCell.text()) != "", isYYYY = jet.checkFormat(jet.format) == "YYYY", okVal = "",
//获取时分秒的数组
eachhmsem = function() {
var hmsArr = [];
boxCell.find(".jedatehms input").each(function() {
hmsArr.push($(this).val());
});
return hmsArr;
};
var minArr = jet.minDate.match(ymdMacth), minNum = minArr[0] + minArr[1] + minArr[2],
maxArr = jet.maxDate.match(ymdMacth), maxNum = maxArr[0] + maxArr[1] + maxArr[2];
if (isValtext) {
var btnokVal = jet.isValHtml(elemCell) ? elemCell.val() :elemCell.text(), oktms = btnokVal.match(ymdMacth);
if (!isYYMM) {
var okTimeArr = eachhmsem(), okTime = [ parseInt(jedateyear.attr("year")), parseInt(jedatemonth.attr("month")), oktms[2]],
okTimeNum = okTime[0] + okTime[1] + okTime[2];
//判断获取到的日期是否在有效期内
var isokTime = (parseInt(okTimeNum) >= parseInt(minNum) && parseInt(okTimeNum) <= parseInt(maxNum)) ? true : false;
okVal = isValtext && isokTime ? jet.parse([ okTime[0], okTime[1], okTime[2] ], [ okTimeArr[0], okTimeArr[1], okTimeArr[2] ], jet.format) :
jet.parse([ oktms[0], oktms[1], oktms[2] ], [ okTimeArr[0], okTimeArr[1], okTimeArr[2] ], jet.format);
if(!ishhmmss) that.createDaysHtml(okTime[0], okTime[1], opts); console.log(okVal)
that.chooseDays(opts);
} else {
var ymactCls = isYYYY ? boxCell.find(".jedayy .action") : boxCell.find(".jedaym .action");
//判断是否为(YYYY或YYYY-MM)类型
if(isYYYY){
var okDate = ymactCls ? ymactCls.attr("yy").match(ymdMacth) : oktms;
okVal = jet.parse([parseInt(okDate[0]), newDate.getMonth() + 1, 1], [0, 0, 0], jet.format);
}else {
var jedYM = ymactCls ? ymactCls.attr("ym").match(ymdMacth) : oktms;
okVal = jet.parse([parseInt(jedYM[0]), parseInt(jedYM[1]), 1], [0, 0, 0], jet.format);
}
}
} else {
var okArr = eachhmsem(), monthCls = boxCell.find(".jedateyearmonth")[0], okDate = "";
//判断是否为时分秒(hh:mm:ss)类型
if (ishhmmss) {
okVal = jet.parse([ tmsArr[0], tmsArr[1], tmsArr[2] ], [ okArr[0], okArr[1], okArr[2] ], jet.format);
} else {
//判断是否为年月(YYYY或YYYY-MM)类型
if(isYYMM){
okDate = jet.checkFormat(jet.format) == "YYYY" ? monthCls.attr("data-onyy").match(ymdMacth) : monthCls.attr("data-onym").match(ymdMacth);
}else{
okDate = [ newDate.getFullYear(), newDate.getMonth() + 1, newDate.getDate()];
}
okVal = isYYYY ? jet.parse([parseInt(okDate[0]), newDate.getMonth(), 1], [0, 0, 0], jet.format) :
jet.parse([parseInt(okDate[0]), parseInt(okDate[1]), newDate.getDate()], [okArr[0], okArr[1], okArr[2]], jet.format);
}
}
jet.isValHtml(elemCell) ? elemCell.val(okVal) :elemCell.text(okVal);
// elemCell.css({borderColor:"#838383"});
that.dateClose();
if ($.isFunction(opts.okfun) || opts.okfun != null) opts.okfun(jet.elemCell,okVal);
});
//点击空白处隐藏
$(document).on("mouseup", function(ev) {
ev.stopPropagation();
var box = $(jet.boxCell);
if (box && box.css("display") !== "none") box.remove();
});
$(jet.boxCell).on("mouseup", function(ev) {
ev.stopPropagation();
});
};
//日期控件版本
$.dateVer = "3.6";
//返回指定日期
$.nowDate = function(num) {
return jet.initDates(num);
};
//为当前获取到的日期加减天数,这里只能控制到天数,不能控制时分秒加减
$.addDate = function(time,num,type) {
num = num | 0; type = type || "DD";
return jet.addDateTime(time,num,type,jet.format);
};
return jeDate;
});
//农历数据
;(function(root, factory) {
root.jeLunar = factory(root.jeLunar);
})(this, function(jeLunar) {
var lunarInfo=[19416,19168,42352,21717,53856,55632,91476,22176,39632,21970,19168,42422,42192,53840,119381,46400,54944,44450,38320,84343,18800,42160,46261,27216,27968,109396,11104,38256,21234,18800,25958,54432,59984,28309,23248,11104,100067,37600,116951,51536,54432,120998,46416,22176,107956,9680,37584,53938,43344,46423,27808,46416,86869,19872,42448,83315,21200,43432,59728,27296,44710,43856,19296,43748,42352,21088,62051,55632,23383,22176,38608,19925,19152,42192,54484,53840,54616,46400,46496,103846,38320,18864,43380,42160,45690,27216,27968,44870,43872,38256,19189,18800,25776,29859,59984,27480,21952,43872,38613,37600,51552,55636,54432,55888,30034,22176,43959,9680,37584,51893,43344,46240,47780,44368,21977,19360,42416,86390,21168,43312,31060,27296,44368,23378,19296,42726,42208,53856,60005,54576,23200,30371,38608,19415,19152,42192,118966,53840,54560,56645,46496,22224,21938,18864,42359,42160,43600,111189,27936,44448],
sTermInfo = [ 0, 21208, 43467, 63836, 85337, 107014, 128867, 150921, 173149, 195551, 218072, 240693, 263343, 285989, 308563, 331033, 353350, 375494, 397447, 419210, 440795, 462224, 483532, 504758 ];
var Gan = "甲乙丙丁戊己庚辛壬癸", Zhi = "子丑寅卯辰巳午未申酉戌亥", Animals = "鼠牛虎兔龙蛇马羊猴鸡狗猪";
var solarTerm = [ "小寒", "大寒", "立春", "雨水", "惊蛰", "春分", "清明", "谷雨", "立夏", "小满",
"芒种", "夏至", "小暑", "大暑", "立秋", "处暑", "白露", "秋分", "寒露", "霜降", "立冬", "小雪", "大雪", "冬至" ];
var nStr1 = "日一二三四五六七八九十", nStr2 = "初十廿卅", nStr3 = [ "正", "二", "三", "四", "五", "六", "七", "八", "九", "十", "十一", "腊"],
sFtv1 = {
"0101" : "*1元旦节", "0202" : "湿地日",
"0214" : "情人节", "0308" : "妇女节",
"0312" : "植树节", "0315" : "消费者权益日",
"0401" : "愚人节", "0422" : "地球日",
"0501" : "*1劳动节", "0504" : "青年节",
"0512" : "护士节", "0518" : "博物馆日",
"0520" : "母亲节", "0601" : "儿童节",
"0623" : "奥林匹克日", "0630" : "父亲节",
"0701" : "建党节", "0801" : "建军节",
"0903" : "抗战胜利日", "0910" : "教师节",
"1001" : "*3国庆节", "1201" : "艾滋病日",
"1224" : "平安夜", "1225" : "圣诞节"
},
sFtv2 = {
"0100" : "除夕", "0101" : "*2春节",
"0115" : "元宵节", "0505" : "*1端午节",
"0707" : "七夕节", "0715" : "中元节",
"0815" : "*1中秋节", "0909" : "*1重阳节",
"1015" : "下元节", "1208" : "腊八节",
"1223" : "小年"
};
function flunar(Y) {
var sTerm = function (j, i) {
var h = new Date((31556925974.7 * (j - 1900) + sTermInfo[i] * 60000) + Date.UTC(1900, 0, 6, 2, 5));
return (h.getUTCDate())
},
d = function (k) {
var h, j = 348;
for (h = 32768; h > 8; h >>= 1) {
j += (lunarInfo[k - 1900] & h) ? 1 : 0;
}
return (j + b(k))
},
ymdCyl = function (h) {
return (Gan.charAt(h % 10) + Zhi.charAt(h % 12))
},
b =function (h) {
var islp = (g(h)) ? ((lunarInfo[h - 1900] & 65536) ? 30 : 29) : (0);
return islp
},
g = function (h) {
return (lunarInfo[h - 1900] & 15)
},
e = function (i, h) {
return ((lunarInfo[i - 1900] & (65536 >> h)) ? 30 : 29)
},
newymd = function (m) {
var k, j = 0, h = 0, l = new Date(1900, 0, 31), n = (m - l) / 86400000;
this.dayCyl = n + 40;
this.monCyl = 14;
for (k = 1900; k<2050&&n>0; k++) {
h = d(k); n -= h;
this.monCyl += 12;
}
if (n < 0) {
n += h; k--;
this.monCyl -= 12;
}
this.year = k;
this.yearCyl = k - 1864;
j = g(k);
this.isLeap = false;
for (k = 1; k<13&&n>0; k++) {
if (j > 0 && k == (j + 1) && this.isLeap == false) {
--k;
this.isLeap = true;
h = b(this.year);
} else {
h = e(this.year, k);
}
if (this.isLeap == true && k == (j + 1)) {
this.isLeap = false;
}
n -= h;
if (this.isLeap == false) this.monCyl++;
}
if (n == 0 && j > 0 && k == j + 1) {
if (this.isLeap) {
this.isLeap = false;
} else {
this.isLeap = true;
--k;
--this.monCyl;
}
}
if (n < 0) {
n += h; --k;
--this.monCyl
}
this.month = k;
this.day = n + 1;
},
digit = function (num) {
return num < 10 ? "0" + (num | 0) :num;
},
reymd = function (i, j) {
var h = i;
return j.replace(/dd?d?d?|MM?M?M?|yy?y?y?/g, function(k) {
switch (k) {
case "yyyy":
var l = "000" + h.getFullYear();
return l.substring(l.length - 4);
case "dd": return digit(h.getDate());
case "d": return h.getDate().toString();
case "MM": return digit((h.getMonth() + 1));
case "M": return h.getMonth() + 1;
}
})
},
lunarMD = function (i, h) {
var j;
switch (i, h) {
case 10: j = "初十"; break;
case 20: j = "二十"; break;
case 30: j = "三十"; break;
default:
j = nStr2.charAt(Math.floor(h / 10));
j += nStr1.charAt(h % 10);
}
return (j)
};
this.isToday = false;
this.isRestDay = false;
this.solarYear = reymd(Y, "yyyy");
this.solarMonth = reymd(Y, "M");
this.solarDate = reymd(Y, "d");
this.solarWeekDay = Y.getDay();
this.inWeekDays = "星期" + nStr1.charAt(this.solarWeekDay);
var X = new newymd(Y);
this.lunarYear = X.year;
this.shengxiao = Animals.charAt((this.lunarYear - 4) % 12);
this.lunarMonth = X.month;
this.lunarIsLeapMonth = X.isLeap;
this.lnongMonth = this.lunarIsLeapMonth ? "闰" + nStr3[X.month - 1] : nStr3[X.month - 1];
this.lunarDate = X.day;
this.showInLunar = this.lnongDate = lunarMD(this.lunarMonth, this.lunarDate);
if (this.lunarDate == 1) {
this.showInLunar = this.lnongMonth + "月";
}
this.ganzhiYear = ymdCyl(X.yearCyl);
this.ganzhiMonth = ymdCyl(X.monCyl);
this.ganzhiDate = ymdCyl(X.dayCyl++);
this.jieqi = "";
this.restDays = 0;
if (sTerm(this.solarYear, (this.solarMonth - 1) * 2) == reymd(Y, "d")) {
this.showInLunar = this.jieqi = solarTerm[(this.solarMonth - 1) * 2];
}
if (sTerm(this.solarYear, (this.solarMonth - 1) * 2 + 1) == reymd(Y, "d")) {
this.showInLunar = this.jieqi = solarTerm[(this.solarMonth - 1) * 2 + 1];
}
if (this.showInLunar == "清明") {
this.showInLunar = "清明节";
this.restDays = 1;
}
this.solarFestival = sFtv1[reymd(Y, "MM") + reymd(Y, "dd")];
if (typeof this.solarFestival == "undefined") {
this.solarFestival = "";
} else {
if (/\*(\d)/.test(this.solarFestival)) {
this.restDays = parseInt(RegExp.$1);
this.solarFestival = this.solarFestival.replace(/\*\d/, "");
}
}
this.showInLunar = (this.solarFestival == "") ? this.showInLunar : this.solarFestival;
this.lunarFestival = sFtv2[this.lunarIsLeapMonth ? "00" : digit(this.lunarMonth) + digit(this.lunarDate)];
if (typeof this.lunarFestival == "undefined") {
this.lunarFestival = "";
} else {
if (/\*(\d)/.test(this.lunarFestival)) {
this.restDays = (this.restDays > parseInt(RegExp.$1)) ? this.restDays : parseInt(RegExp.$1);
this.lunarFestival = this.lunarFestival.replace(/\*\d/, "");
}
}
if (this.lunarMonth == 12 && this.lunarDate == e(this.lunarYear, 12)) {
this.lunarFestival = sFtv2["0100"];
this.restDays = 1;
}
this.showInLunar = (this.lunarFestival == "") ? this.showInLunar : this.lunarFestival;
}
var jeLunar = function(y,m,d) {
return new flunar(new Date(y,m,d));
};
return jeLunar;
});