未在自定义crm jquery完整日历中单击的事件

时间:2016-12-02 07:03:32

标签: jquery css

当我在点击的那一半调整了jquery日历的大小 事件没有被点击,它在IE上工作正常但不起作用 在Firefox和Chrome上。

1 个答案:

答案 0 :(得分:0)

$(document).ready(function () {
            //h = screen.availHeight;
            w = screen.availWidth;
            $cal = $('#calendar');
            $cal.width(w);
            $modal = $('#myModal');
            $modal.width(w);
            //$modal.height(h);
            $(window).resize(function () {
                $('#calendar').fullCalendar('option', 'height', get_calendar_height());
            });
            fetchEventData();
            bindCalender();
            $('#calendar').fullCalendar({
                //options
                height: get_calendar_height

            });
        });