当前我在我的一个项目中使用Jquery DatePicker作为我的日历选择器。我的要求是在每个月的日历显示中添加周数。同样对于每个月,周应该从1到4或5开始。我怎么能写一个函数" fnweek"并在calculateWeek参数中传递此函数?
$('#date').datesPicker({
firstDay : 1,
showWeek:true,
calculateWeek: fnweek
});
function fnweek(){
}

感谢您的帮助。