我正在开发完整的日历V4,现在遇到使用gotoDate
方法的问题。
P / S:我知道'calendar'是班级名称。我已经在顶部使用了该类。如何直接调用该类而不重复调用该类。
$('#date-choose').bootstrapMaterialDatePicker({
format: 'dddd DD MMMM YYYY',
weekStart: 0,
time: false,
currentDate: new Date()
}).on("change", function(e, date){
calendar.gotoDate( date.toISOString() ); //this is the method
});