fullcalendar在dayclick中获取当前点击日期中的events

避免出现错误,fullcalendar 需要的属性要写 ,下面是部分代码

    events:
            /*
            function(start,end,callback){
                    //alert($.fullCalendar.formatDate(start,'yyyy-MM-dd'));
                    //alert($.fullCalendar.formatDate(end,'yyyy-MM-dd'));
                    var params = {start:$.fullCalendar.formatDate(start,'yyyy-MM-dd'),end:$.fullCalendar.formatDate(end,'yyyy-MM-dd'),empSn:'{{_USER_.name}}'};
                    $.ajax({
                        url:"/main/event/getEventList",
                        type:"post",
                        data:params,
                        dataType: 'json',
                        success: function(res){
                            //var jsontext = [{ id: 1, title: 'studyjQuerypost', start: '2015-09-01 08:00', end: '2015-09-01 10:30',allDay:0 },{ id: 2, title: 'studyjQuerypost3', start: '2015-09-02', end: '2015-09-02',color:'red' }];
                            callback(res);

                        },
                        error:function(error){
                            alert("服务器错误!");
                        }
                    });
                    //      checkPlan(start,end);
                },*/

            [
                {
                    title: 'All Day Event',
                    start: '2017-04-01',
                    end:'2017-04-07',
                    allDay:true,
                    editable:false,
                    textColor:'red',
                    color:'green'
                },
                {
                    title: 'Long Event',
                    start: '2017-04-07',
                    end: '2017-04-10'
                }]

重要的来了具体实现

dayClick: function(date, jsEvent, view) {
        var events = $('#calendar').fullCalendar('clientEvents', function(event) {
            var eventStart = event.start.format('YYYY-MM-DD');
            var eventEnd = event.end ? event.end.format('YYYY-MM-DD') : null;
            var theDate = date.format('YYYY-MM-DD');
            // Make sure the event starts on or before date and ends afterward
            // Events that have no end date specified (null) end that day, so check if start = date
            return (eventStart <= theDate && (eventEnd >= theDate) && !(eventStart < theDate && (eventEnd == theDate))) || (eventStart == theDate && (eventEnd === null));
        });
        console.log(events); // do whatever with the console.log(events[0]._allDay); 
    }
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值