开发者

Fullcalendar jQuery prev and next buttons

开发者 https://www.devze.com 2023-02-27 05:53 出处:网络
I\'m using Fullcalendar and when I click on the prev or next buttons, on the header, I want to get the month. How can I do th开发者_Python百科at?Use events like this:

I'm using Fullcalendar and when I click on the prev or next buttons, on the header, I want to get the month. How can I do th开发者_Python百科at?


Use events like this:

$('#calendar').fullCalendar({
    events: '/myfeed.php'
});

And when the user click the previous or next button, it will call the myfeed.php automatically, like this: ?start=1262332800&end=1265011200&_=1263178646.

You will be able to catch this in server side and it's Unix Time Format.

0

精彩评论

暂无评论...
验证码 换一张
取 消