Can't get jquery fullcalendar events to color correctly

≡放荡痞女 提交于 2019-12-04 05:27:05

问题


I tried copying the exact same code from the FullCalendar Homepage. So I have:

$(document).ready(function () {

    var date = new Date();
    var d = date.getDate();
    var m = date.getMonth();
    var y = date.getFullYear();

    $('#calendar').fullCalendar({
        header: {
            left: 'prev,next today',
            center: 'title',
            right: 'month,agendaWeek,agendaDay'
        },
        editable: true,
        events: [
                {
                    title: 'All Day Event',
                    start: new Date(y, m, 1)
                },
                {
                    title: 'Long Event',
                    start: new Date(y, m, d - 5),
                    end: new Date(y, m, d - 2)
                },
                {
                    id: 999,
                    title: 'Repeating Event',
                    start: new Date(y, m, d - 3, 16, 0),
                    allDay: false
                },
                {
                    id: 999,
                    title: 'Repeating Event',
                    start: new Date(y, m, d + 4, 16, 0),
                    allDay: false
                },
                {
                    title: 'Meeting',
                    start: new Date(y, m, d, 10, 30),
                    allDay: false
                },
                {
                    title: 'Lunch',
                    start: new Date(y, m, d, 12, 0),
                    end: new Date(y, m, d, 14, 0),
                    allDay: false
                },
                {
                    title: 'Birthday Party',
                    start: new Date(y, m, d + 1, 19, 0),
                    end: new Date(y, m, d + 1, 22, 30),
                    allDay: false
                },
                {
                    title: 'Click for Google',
                    start: new Date(y, m, 28),
                    end: new Date(y, m, 29),
                    url: 'http://google.com/'
                }
            ]
    });

});

I have verified that my site correctly includes the fullcalendar.css and fullcalendar.print.css.

However, my page comes up as:

http://dl.dropbox.com/u/6753359/badcalendar.PNG

Notice my events are not blue like their examples. I tried setting the color property in the events, I tried giving the events a className, nothing is making my events have color.


Edit: When I inspect my "All Day Event" event, Chrome shows me the following divs: http://dl.dropbox.com/u/6753359/badcalendarEventElement.PNG

And as far styles being used, Chrome shows me:

http://dl.dropbox.com/u/6753359/badcalendarCss.PNG


Does anyone know how I can fix this?


回答1:


try adding media="print"

<link rel="stylesheet" href="fullcalendar.print.css" type="text/css" media="print" />

your print style sheet is overriding your screen style sheet.



来源:https://stackoverflow.com/questions/7772260/cant-get-jquery-fullcalendar-events-to-color-correctly

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!