如何以英国格式获取日期

时间:2019-02-16 20:43:16

标签: fullcalendar

列日期显示为星期六2/16等,而不是英国格式的星期六16/2。我该如何更改?

default: 'en',
columnFormat: {                     
       day: 'dddd d/M'
}, 

不起作用。

1 个答案:

答案 0 :(得分:1)

您需要包括语言环境文件,然后在日历配置中对其进行设置

您可以阅读有关here的所有信息

  

您需要加载语言环境JavaScript数据文件才能使用它。这些文件包含在locale /目录中的FullCalendar下载中。加载主FullCalendar库后,必须通过标签加载它们。

   script src='fullcalendar/fullcalendar.js'></script>
<script src='fullcalendar/locale-all.js'></script> <!-- this is a file including all the locales -->
<script>

  $(function() {

    $('#calendar').fullCalendar({
      locale: 'es'   // This is an acronym for the locale you want to select
    });

  });