0
我想附加一些額外的HTML到事件div取決於我從ajax函數獲得的數據。如何通過事件對象ID找到fc事件div?
我已經抓住了所有的eventobjects與
var array = $('#calendar').fullCalendar('clientEvents');
for(var a=0; a<array.length; a++)
{
$.post(site_url+"/calendar/get_workers_on_job", { 'id' : array[a].id },
function(data) {
for(var b=0;b<data.length;b++)
{
//Here I want to append the json data to the event div.
}
},'json');
}
但我無法弄清楚如何找出事件的div與之相關聯。
我很感激任何幫助,我可以得到。
您的活動如何呈現?通過事件源?您可以將「id」附加到事件對象中:http://arshaw.com/fullcalendar/docs/event_data/Event_Object/ – roflwaffle
事件正在使用ID進行重新排列。這是我使用cliendEvents函數獲得的,並在稍後將post函數作爲'id'發送。 –