Fullcalendar显示上个月和下个月的条目如何隐藏此内容

when i dynamically load event in fullcalender at this time preview month entry also be display

Example

if user on July 2014 then last few date of June 2014 is disable but event of that date will be display is there any option to solve this issue

I had some difficulties understanding your question.... Do you only want the user to see the events of the current (this) month? If so, try this:

eventRender: function(event, element, view) {
    if(event.start.getMonth() !== view.start.getMonth()) { 
        return false; 
    }
}

It's simply not rendering them.