文本自定义之buttonText – FullCalendar中文文档

2014-02-11 · 127 chars · 1 min read

FullCalendar 中文文档目录

设置日程表的头部按钮文字,值为 Object 类型,默认:

{
    prev:     '&lsaquo;', // <
    next:     '&rsaquo;', // >
    prevYear: '&laquo;',  // <<
    nextYear: '&raquo;',  // >>
    today:    'today',
    month:    'month',
    week:     'week',
    day:      'day'
}

如果你想修改 前进/后退 按钮的文字为 < 和 > 字符,可以使用下面的代码:

$('#calendar').fullCalendar({
  buttonText: {
    prev: '&lt;',
    next: '&gt;',
  },
})

官方英文文档:http://arshaw.com/fullcalendar/docs/text/buttonText/

赞赏

微信