我需要一个日历插件(最好是jQuery或更好的WordPress),它显示点击日期时的开放时间。
开放时间取决于星期几和季节。
我已经看过各种日历插件,但大多数都是日期选择器或者面向发布活动。
答案 0 :(得分:1)
FullCalendar会做你想做的事。
您需要在dayClick
事件(documentation)上设置处理程序。
例如:
$("#calDiv").fullCalendar(
dayClick: function(date, allDay, jsEvent, view) {
// change the day's background color just for fun
$(this).css('background-color', '#6495ED');
// assuming a call that goes to the server and gets HTML for an opening hours popup
$.ajax(
url: '/path/to/get/hours',
data: {'date' : date}, // pass the date as a param,
dataType: 'html',
success: function(data) {
$("#divForPopup").html(data).show();
}
);
}
);
或者,您可以为每天创建一个活动,显示营业时间(或打开的总小时数,包括营业时间)。