1

你能告诉我如何调用setDaysToShowjQuery weekcalendar插件的功能吗?我不知道如何通过days

这是来自文档

$(“#calendar”).weekCalendar(“setDaysToShow”); // Changes how many days are shown (see the daysToShow option)
4

1 回答 1

0
$('#calendar').weekCalendar('setDaysToShow', value);

或者您可以在初始化时通过将其作为选项传递来执行此操作

$('#calendar').weekCalendar({'setDaysToShow': value});
于 2013-01-11T19:22:25.280 回答