gpt4 book ai didi

jquery - 如何在完整日历中查找月 View 或周 View 或日 View

转载 作者:行者123 更新时间:2023-12-03 22:48:06 27 4
gpt4 key购买 nike

我正在使用完整日历。这里我的问题是,当单击上一个按钮或下一个按钮单击功能时,如何找到月 View 、周 View 或日 View 格式的完整日历。这里正在调用下一个和上一个按钮的自定义代码。因为使用这个我想触发一些自定义数据。基于全日历 View 。

 $(document).on('click', '.fc-button-next a span', function () {

here I want to find the view of full calendar which is in month or week or day

       var abc = $("#calendar").fullCalendar('getView').start.toString();
var MonthVal = getMonthValue(abc);
var YearVal = getYearValue(abc);

$('#calendar').fullCalendar('destroy');

dataString = "{ID:" + MonthVal + "," + "year:" + YearVal + "}";

DisplayCalendarForMonth(dataString, MonthVal, YearVal);
});
$(document).on('click', '.fc-button-today a span', function () {

here I want to find the view of full calendar which is in month or week or day

       $('#calendar').fullCalendar('destroy');
DisplayCalendar();
});

最佳答案

 var view = $('#calendar').fullCalendar('getView');
if (view.name == 'month') {
}

关于jquery - 如何在完整日历中查找月 View 或周 View 或日 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17268683/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com