代码改变世界

Calendar控件点击下个月按钮后,本月标记的各个具体天的样式都取消

2018-09-25 18:45  马尔代夫_珍  阅读(503)  评论(0)    收藏  举报

Calendar控件点击下个月按钮后,本月标记的各个具体天的样式都取消

var tabdate = [1, 5, 7];
var tabclass = ["tag", "tag", "unb"];
var cal = new Calendar({
target: '.calendar-wrap',
className: 'cal',
tagDates: tabdate,
tagClass: tabclass,
todayText: '今天',
// year: 2018,
// month: 8,
onReady: function () {
},
onChangeMonthBefore: function (dateObj, type) {
tabdate = [];
tabclass = [];
this.cfg.tagDates = tabdate;
this.cfg.tagClass = tabclass;
},
//当天日期获取方法
onSelect: function (dateObj, e) {
},
onChangeMonth: function (dateObj) {
}
});

结果效果图: