Kelvin Luck 日期选择器的问题 [选择过去的日期]

发布于 2024-11-19 14:57:41 字数 530 浏览 0 评论 0 原文

在我的项目中,我使用这个日期选择器,我在这里阅读如何将其放入 Cakephp 中: http://bakery.cakephp.org/articles/agusti/2010/02/02/transparent-datepicker-with-jquery

当我将格式更改为 ymd 时(例如:2011-12- 10),我无法像示例中那样选择过去的日期。 http://www.kelvinluck.com/assets/jquery/datePicker /v2/demo/datePickerPastDate.html 我不明白如何使过去的日期可供选择。

in my project I'm using this datepicker, I read how to put it into Cakephp here: http://bakery.cakephp.org/articles/agusti/2010/02/02/transparent-datepicker-with-jquery

When I change format to ymd (Ex: 2011-12-10), I can´t select past dates like in the example. http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/datePickerPastDate.html
I can't understand how to make past dates selectable.

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

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

发布评论

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

评论(1

离笑几人歌 2024-11-26 14:57:41

我找到了答案,只需编辑这一行:

this.startDate = null;

至:

this.startDate = '2000-01-01';

并将此编辑:

this.setStartDate(s.startDate);

至:

this.setStartDate('2000-01-01');

I found the answer, just need to edit this line:

this.startDate = null;

to:

this.startDate = '2000-01-01';

And edit this:

this.setStartDate(s.startDate);

to:

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