gpt4 book ai didi

javascript - 启用日期期间 Javascript 默认日历

转载 作者:太空宇宙 更新时间:2023-11-04 16:06:14 25 4
gpt4 key购买 nike

我在数据库中有一个表,其中包含一些日期。我想禁用 magento 默认日历中的这些日期。日历位于前端结账流程中(用于添加订单的交货日期)。任何建议将不胜感激。

Calendar.setup({
inputField : "date", // ID of the input field
ifFormat : "<%=systemDateFormat%>", // the date format
button : "triggerDate" , // ID of the button
disableFunc: ??????,
});

<style type="text/css">@import url(calendar-system.css);</style>
<script type="text/javascript" src="calendar.js"></script>
<script type="text/javascript" src="lang/calendar-en.js"></script>
<script type="text/javascript" src="calendar-setup.js"></script>

最佳答案

您可以通过以下方式禁用日期。

function disabledDate(date) {
//get all dates from Server in Array
var disabledDates = []; // add all dates with (,) separated here.
for(i=0; i <disabledDates.length;i++)
{
// Parse the date one by one and match with
if( date.getDate() == PARSED_DATE)
return true;
}
return false;


};

然后您可以在设置中添加此功能

Calendar.setup({
inputField : "date", // ID of the input field
ifFormat : "<%=systemDateFormat%>", // the date format
button : "triggerDate" , // ID of the button
disableFunc: disabledDate
});

关于javascript - 启用日期期间 Javascript 默认日历,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41847294/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com