我怎么能找到fc-事件div有事件对象ID



我想根据从ajax函数获得的数据向事件div添加一些额外的html。

我已经抓取了所有带有

的事件对象
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与它相关联。

在div上添加一个类,然后使用jQuery。

相关内容

  • 没有找到相关文章

最新更新