如何在此 DHTML 日历中屏蔽历史日期?

发布于 2024-09-09 05:31:49 字数 217 浏览 4 评论 0原文

我已经从 http://www.dynarch.com/projects/calendar/ 添加了日历旧/ 到我的 WordPress 网站。它加载得很好,但我不希望人们选择过去的日期,我已经设法做到了,但想添加删除线但不知道如何。请帮忙。 谢谢

I've added the calendar from http://www.dynarch.com/projects/calendar/old/ onto my wordpress site. It loads fine but I don't want people to select dates in the past which I've managed to do but want to add a strikethrough but don't know how. Please help.
Thanks

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

若水微香 2024-09-16 05:31:49

http://www.dynarch.com/ static/jscalendar-1.0/doc/html/reference.html#node_sec_5.3.7

您需要自己的禁用日期处理程序

例如

function disallowDate(date) {
  // date is a JS Date object
  var d=new Date();
  if (  date.getTime() < d.getTime()) {
    return true; // disable anything less than today
  }
  return false; // enable other dates
};

calendar.setDisabledHandler(disallowDate);

http://www.dynarch.com/static/jscalendar-1.0/doc/html/reference.html#node_sec_5.3.7

You need your own disabled date handler

For example

function disallowDate(date) {
  // date is a JS Date object
  var d=new Date();
  if (  date.getTime() < d.getTime()) {
    return true; // disable anything less than today
  }
  return false; // enable other dates
};

calendar.setDisabledHandler(disallowDate);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文