有人能告诉我这个函数怎么用吗?
我想把fullCalendar中的英文转成中文
$.fullCalendar.formatDate({ monthNames: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"] }); 
这样报错 说什么length为空或不是对象~
新手,盼指教

解决方案 »

  1.   

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html>
    <head>
    <meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
    <meta name='author' content='Adam Shaw'> <title>FullCalendar - Full-sized Calendar jQuery Plugin</title>

    <link rel='stylesheet' type='text/css' href='http://arshaw.com/css/main.css?6' />
    <link rel='stylesheet' type='text/css' href='http://arshaw.com/css/fullcalendar.css?3' /> <link rel='stylesheet' type='text/css' href='http://arshaw.com/js/fullcalendar/fullcalendar/fullcalendar.css' />
    <script type='text/javascript' src='http://arshaw.com/js/fullcalendar/jquery/jquery-1.4.4.min.js'></script> <script type='text/javascript' src='http://arshaw.com/js/fullcalendar/jquery/jquery-ui-1.8.6.custom.min.js'></script>
    <script type='text/javascript' src='http://arshaw.com/js/fullcalendar/fullcalendar/fullcalendar.min.js'></script>
    <script type='text/javascript'> $(document).ready(function() {

    var date = new Date();
    var d = date.getDate();
    var m = date.getMonth();
    var y = date.getFullYear();

    $('#calendar').fullCalendar({
    monthNames: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
    header: {
    left: 'prev,next today',
    center: 'title',
    right: 'month,agendaWeek,agendaDay'
    },
    editable: true,
    events: [
    {
    title: 'All Day Event',
    start: new Date(y, m, 1)
    },
    {
    title: 'Long Event',
    start: new Date(y, m, d-5),
    end: new Date(y, m, d-2)
    },
    {
    id: 999,
    title: 'Repeating Event',
    start: new Date(y, m, d-3, 16, 0),
    allDay: false
    },
    {
    id: 999,
    title: 'Repeating Event',
    start: new Date(y, m, d+4, 16, 0),
    allDay: false
    },
    {
    title: 'Meeting',
    start: new Date(y, m, d, 10, 30),
    allDay: false
    },
    {
    title: 'Lunch',
    start: new Date(y, m, d, 12, 0),
    end: new Date(y, m, d, 14, 0),
    allDay: false
    },
    {
    title: 'Birthday Party',
    start: new Date(y, m, d+1, 19, 0),
    end: new Date(y, m, d+1, 22, 30),
    allDay: false
    },
    {
    title: 'Click for Google',
    start: new Date(y, m, 28),
    end: new Date(y, m, 29),
    url: 'http://google.com/'
    }
    ]
    });

    }); </script></head>
    <body>
    <div id='calendar' style='margin:3em 0;font-size:13px'></div>
    </body>
    </html>