📅  最后修改于: 2023-12-03 14:43:26.395000             🧑  作者: Mango
jqxScheduler 是一个基于 jQuery 的日程安排组件,旨在提供易于使用的 API 和强大的功能,可以轻松地管理和视觉化日程。其中 date
属性用于设置或获取日程组件的当前日期。
设置日期:
$("#scheduler").jqxScheduler({ date: new Date() });
获取日期:
var currentDate = $("#scheduler").jqxScheduler("getDate");
date
属性接受 JavaScript 中的 Date
对象作为参数,表示要设置的日期值。
$("#scheduler").jqxScheduler({
width: 800,
height: 600,
date: new Date(2021, 3, 1), // 设置当前日期为 2021 年 4 月 1 日
appointments:
[
{
id: "1",
description: "Meeting with John",
location: "Room 101",
subject: "Meeting",
calendar: "Work",
start: new Date(2021, 2, 31, 10, 0, 0),
end: new Date(2021, 2, 31, 11, 0, 0)
},
{
id: "2",
description: "Dinner with Jane",
location: "Restaurant",
subject: "Dinner",
calendar: "Personal",
start: new Date(2021, 3, 1, 18, 30, 0),
end: new Date(2021, 3, 1, 20, 0, 0)
}
]
});
jQWidgets jqxScheduler
组件的 date
属性用于设置或获取日程组件的当前日期。可以使用 JavaScript
中的 Date
对象来设置日期值。这个属性对于管理日程的应用程序非常有用。