当前时间设置之getDate – FullCalendar中文文档
2014-02-09 · 84 chars · 1 min read
返回当前日期:
.fullCalendar('getDate')
点击按钮显示当前时间的例子:
$('#my-button').click(function () { var d = $('#calendar').fullCalendar('getDate') alert('The current date of the calendar is ' + d) })
官方英文文档:http://arshaw.com/fullcalendar/docs/current_date/getDate/