您能告诉我如何调用jQuery weekcalendar插件的setDaysToShow函数吗?我不知道如何通过days

这来自docs

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

最佳答案

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


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

$('#calendar').weekCalendar({'setDaysToShow': value});

09-04 21:51