如何在js-year-calendar中选择数据范围

时间:2019-11-05 09:51:22

标签: javascript jquery twitter-bootstrap

现在我着手开发js-year-calendar,并希望添加数据选择器之类的功能。

但是我堆叠起来添加了一些功能,例如日期范围选择器。我想选择日期范围,并想在日历上注册事件。 当我参考文档时,范围选择器的开发如下所示。我可以显示日历,但选择器不能很好地工作。

https://year-calendar.github.io/js-year-calendar/docs/index.html

https://year-calendar.github.io/js-year-calendar/documentation

    new Calendar('.calendar');
    document.querySelector('.calendar').addEventListener('selectRange', function(e) {
    console.log("Select the range: " + e.startDate + " - " + e.endDate);
});

我遇到了一些错误,这可能是原因吗?

如果有人遇到过此类问题,请告诉我。谢谢

enter image description here

enter image description here

0 个答案:

没有答案