たとえば、ページにすべての月を入力しています。
<?php foreach(range(0,11) as $month): ?>
<div style='float:left; width:303px;' id='calenderSalesMonth_<?php echo $month ?>' class='calenderSales'></div>
<?php endforeach; ?>
fullCalendar
経由で特定の月を設定する必要がid='calenderSalesMonth_*'
ありますが、機能しません。エラーが発生します。
Uncaught TypeError: Cannot call method 'split' of undefined
コード:
$('.calenderSales').fullCalendar({
editable: false,
events: { url: 'calender-events.php' },
firstDay:1,
month: $(this).attr("id").split("_")[1],
year: 2013
});