如何在FullCallendar JS中始终处于底部的活动

发布于 2025-02-04 20:13:15 字数 1135 浏览 5 评论 0原文

即使我重新加载页面,我如何设置“花费我的事件”以保持在下面。 我在Javasecript上使用FullCalendar,然后尝试了几种方法,例如EventRender,EventDidMount,但仍然没有结果。 我使用EventSource调用事件数据 ”在此处输入图像说明”

function renderCalender(val){

var calendarEl = document.getElementById('calendar');
var calendar = new FullCalendar.Calendar(calendarEl, {
  eventSources: [
    {
      events: [
        {
          title: 'My Event',
          start: '2022-05-31',
          end: '2022-05-31',
        },
        {
          title: 'My Event 1',
          start: '2022-05-31',
          end: '2022-06-02',
        }
      ],
    },
    {
      events: [
        {
          title: 'Cost My Event',
          start: '2022-05-31',
          end: '2022-05-31',
          url: 'http://google.com/'
        },
        {
          title: 'Cost My Event',
          start: '2022-06-01',
          end: '2022-06-02',
        }
      ],
      color: '#4caf50',
      textColor: '#fff',
    }
  ],
});
calendar.render();

}

how can i set the "cost my event" to stay below even though i reload the page.
i use fullcalendar on javasecript and i tried several ways like eventRender, eventDidMount, but still no result.
i use eventSource to call event dataenter image description here

function renderCalender(val){

var calendarEl = document.getElementById('calendar');
var calendar = new FullCalendar.Calendar(calendarEl, {
  eventSources: [
    {
      events: [
        {
          title: 'My Event',
          start: '2022-05-31',
          end: '2022-05-31',
        },
        {
          title: 'My Event 1',
          start: '2022-05-31',
          end: '2022-06-02',
        }
      ],
    },
    {
      events: [
        {
          title: 'Cost My Event',
          start: '2022-05-31',
          end: '2022-05-31',
          url: 'http://google.com/'
        },
        {
          title: 'Cost My Event',
          start: '2022-06-01',
          end: '2022-06-02',
        }
      ],
      color: '#4caf50',
      textColor: '#fff',
    }
  ],
});
calendar.render();

}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文