2016-12-01 2 views

答えて

1

あなたはこれを試すことができます。

$(document).ready(function() { 
    $('#calendar').fullCalendar({ 
     header: { 
      left: 'prev,next today', 
      center: 'title', 
     }, 
     defaultView: 'month', 
     dayRender: function (date, cell) { 
     if (moment(date).weekday() == 5) { 
      cell.css("background-color", "red"); 
     } 
    }, 
}); 
}); 

https://jsfiddle.net/wke7w839/

敬具
クシシュトフを

+0

はありがとう非常に..完全に動作しています。 – Hanna

+0

私は助けることができてうれしいです! –