我正在使用Fullcalendar來顯示用戶輸入和輸出時間。Chrome瀏覽器中的Fullcalendar標籤順序有所不同
我按照以下順序在fullcalendar中顯示標籤。 First In
,Duration
,Last Out
。一切正常。 但在Chrome Browser
顯示標籤的順序在某些日期有所不同。
啓動Fullcalendar
$('#calendar').fullCalendar({
theme: true,
header: {
left: 'prev,today,next',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
contentHeight: 400,
editable: false,
weekends: true,
aspectRatio: 2,
events: arr//Array of labels First In, Duration, Last out
});
它應該按照給定的順序,但不是。有沒有解決這個問題的方法。在Plnkr
實時預覽網址:http://plnkr.co/edit/8rxDGUUBJVRq1dja0Xm1?p=preview
添加'arr'詳細信息...使jsfiddle也 –
檢查工作[小提琴](http://jsfiddle.net/h9cC6/2313/)在Chrome和火狐 –
我這樣做。請等待 – ManiMuthuPandi