在fullcalendar上单击prev和next按钮时调用事件

在fullcalendar上单击prev和next按钮时调用事件

本文介绍了jquery fullcalendar:在fullcalendar上单击prev和next按钮时调用事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在中,我们有上一个和下一个按钮。我们如何通过点击这些按钮来调用某些事件?

解决方案

您可以简单地将一个事件附加到按钮上:



$ $ $ $ $ $''.fc-button-prev span')。click(function(){
alert('prev is clicked,做点什么');
});
$ b $('。fc-button-next span')。click(function(){
alert('nextis clicked,do something');
});


In jquery fullcalendar we have previous and next buttons. How can we call some events on click of these buttons?

解决方案

You couldsimply attach an event to the button:

$('.fc-button-prev span').click(function(){
   alert('prev is clicked, do something');
});

$('.fc-button-next span').click(function(){
   alert('nextis clicked, do something');
});

这篇关于jquery fullcalendar:在fullcalendar上单击prev和next按钮时调用事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-29 12:13