我正在使用来自 dynarch.com 的 1.0 版 JSCalendar 我在页面上有 3 个日历,对于其中一个,我需要将默认日期设置为昨天。
我用来设置日历的代码如下所示:
Calendar.setup({
inputField : "endDate", // ID of the input field
ifFormat : "%Y%m%d", // the date format
button : "calendarTriggerEndDate", // ID of the button
timeFormat : 24,
showsTime :false,
displayArea :"reportEndDate",
daFormat : "%b %d, %Y"
});
我尝试添加一个“日期”参数,但它似乎没有完成这项工作。也许,它可能需要采用不同的格式。
如何设置默认日期?