开发中需要一个日期插件,可以在zepto下使用,可以选择日期段,可以设置不可选日期
找到一个完全满足的,并且基于JS不依赖于任何库。
在线演示:http://chipersoft.com/Kalendae/
项目地址:https://github.com/ChiperSoft/Kalendae
//日历向前选择,年按钮禁用,日期段选择
new Kalendae($("#date-picker")[0], {
direction:'future',
mode:'range',
useYearNav:false
/* blackout: function (date) {
return Kalendae.moment(date).date() % 2; //blackout weekends
}*/
});