jquery的日期插件有好几款,H5中的input也可以自带日期选择。但为什么要再写一个,有两个理由,一个是引用的文件太大,而有时候只需要很简单的功能,二个是想加一些自定义的效果不好改。
我写的这个功能比较简单,可以换月,有预约效果,可以设定预约日期范围,压缩后1.4kb,先上个图,再慢慢解释:
js代码:
$.fn.datebox = function (options) { var config = { $valueEle: $("#outputTime"), $prev: $(".datetitle #up"), $next: $(".datetitle #down"), minDate:null, maxDate:null, } config = $.extend(config, options); Date.prototype.format = function (format) { var o = { "M+": this.getMonth() + 1, //month "d+": this.getDate(), //day "h+": this.getHours(), //hour "m+": this.getMinutes(), //minute "s+": this.getSeconds(), //second "q+": Math.floor((this.getMonth() + 3) / 3), //quarter "S": this.getMilliseconds() //millisecond } if (/(y+)/.test(format)) format = format.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length)); for (var k in o) if (new RegExp("(" + k + ")").test(format)) format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? o[k] : ("00" + o[k]).substr(("" + o[k]).length)); return format; }; var self = this; var $ele = $(this); var maxdate,mindate; var nstr = new Date(); var ynow = nstr.getFullYear(); var mnow = nstr.getMonth(); var dnow = nstr.getDate(); if(!config.minDate){ mindate=nstr; }else{ mindate=new Date(config.mindate) } if(config.maxDate){ maxdate=new Date(config.maxDate) } self.isLeap = function (year) { return (year % 100 == 0 ? res = (year % 400 == 0 ? 1 : 0) : res = (year % 4 == 0 ? 1 : 0)); } console.log("最小日期是:",mindate.format("yyyy-MM-dd")) console.log("最大日期是:",maxdate.format("yyyy-MM-dd")) console.log("当前日期:",currentDate()) pain(); function pain() { var n1str = new Date(ynow, mnow, 1); //当月第一天 var firstday = n1str.getDay(); //当月第一天星期几 var m_days = new Array(31, 28 + self.isLeap(ynow), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31); //各月份的总天数 var tr_str = Math.ceil((m_days[mnow] + firstday) / 7); //表格所需要行数 //打印表格第一行(有星期标志) $("#datetb").remove(); var str = "
周日 | 周一 | 周二 | 周三 | 周四 | 周五 | 周六 |
" + " " + date_str + " " + "预约 " + " | " : str += "" + date_str + " | "; } str += "|||||
" + ynow + "年" + (mnow + 1) + "月 |
' + $td.html() + '
预约
');
dnow=day;
setDate(ynow, mnow, day);
}
}
self.getDate=function(){
return currentDate();
}
$ele.on("click", "table td", function () {
self.seleted($(this));
});
config.$prev.click(function () {
self.prev();
});
config.$next.click(function () {
self.next();
});
return self;
}
css:随便玩了。
body { font-family: Helvetica,Microsoft JhengHei; font-size:1.5rem; } *{ padding:0; margin:0;} .content { padding-top: 11%; font-family: hyxmtj,Microsoft JhengHei; text-shadow: 0.5px 1px 1px #e3eab7; } .datetitle { width: 100%; background: #fed700; text-align: center; line-height: 3rem; -moz-border-radius: 1.7rem; -webkit-border-radius: 1.7rem; border-radius: 1.7rem; border-bottom: 0.25rem solid #d1a802; color: black; text-shadow: 1px 1px 1px #d1a802; position: relative; } .datetitle:before { content: ""; position: absolute; width: 62%; border-left: 0.5rem solid #d1a802; border-right: 0.5rem solid #d1a802; height: 1.5rem; bottom: -1.5rem; left: 0; margin-left: 17%; } .datebox{ border:1px solid #d1a802;margin: 0 auto; margin-top: 1.2rem; width:68%; -moz-border-radius:1.5rem; -webkit-border-radius:1.5rem; border-radius:1.5rem; padding:0 1rem; font-size:0.7rem; background:white; text-shadow:none;} .datebox table{width:100%; border:none;} .datebox table td{ width: 2rem;height: 2rem;text-align: center;border: 1px solid transparent;} .datebox table td div{ font-size: small; } .datebox table td.selected{border:1px solid #deaa5d; color:#deaa5d; } .datebox table td.selected .subscribe{display:block;} .datebox table td .subscribe{display:none;} .datebox table tfoot td{ font-weight: bold;} .databox #up ,.databox #down { cursor: pointer; } .datetitle #down { float: right; margin-right:2rem; } .datetitle #up { float: left; margin-left:2rem; } .datetitle #up:hover ,.datetitle #down:hover { color: green; }
公布了isLeap,next,prev,getdate,seleted 五个方法(看名字就不需要解释了吧)。默认今天是最小的预约时间。
可以这样设定最大的可预约时间:
var date = $(".datebox").datebox({maxDate:"2016-12-20"});
同理可以设置最小日期。
换月的时候日期会自动切换到可预约的日期。
demo下载:http://files.cnblogs.com/files/stoneniqiu/datebox.zip 样式不喜欢的可以自己去改动。功能上要增增减减也很方便。