问题描述
- fullcalendar点击prve或者next按钮翻月时,触发一个函数
-
我就想当点击prve或者next按钮翻月时,触发一个函数,然后函数里面做些其他的操作。
解决方案
用jquery找出上下按钮添加click事件就行了
fc1.5用这个
$('#calendar').find('.fc-button-prev,.fc-button-next').click(function(){alert($(this).hasClass('fc-button-prev')?'prev':'next')})
fc2.2用这个
$('#calendar').find('.fc-prev-button,.fc-next-button').click(function(){alert($(this).hasClass('fc-prev-button')?'prev':'next')})
其他版本注意修改样式选择器
解决方案二:
一个html按钮切换绑定不同函数后,点击时执行多次函数。
时间: 2024-12-31 09:48:35