jquery 日期选择器禁用字段

发布于 2024-12-02 12:06:23 字数 307 浏览 0 评论 0原文

我遇到一种情况,由于某种原因,jquery 日期选择器禁用了我的日期字段。

这是 JSfiddle 上的: http://jsfiddle.net/VFEMA/

重现:选择一天。

然后选择同一日期集的月份。

您会看到这一天由于某种原因已完全禁用。它应该仅禁用与该月不相关的选项(例如:2 月的 29,30 和 31)。

有什么想法为什么吗?

我确信这在某个阶段是有效的...... 提前致谢!

i have a situation that the jquery date picker is disabling my date field, for some reason.

here it is on JSfiddle: http://jsfiddle.net/VFEMA/

reproduce: choose a DAY.

then choose the MONTH for the same date set.

you will see that the day has been disabled completely for some reason. it should disable only the options that are not relevant for that month (eg: 29,30 and 31 for Feb).

any ideas why?

I am sure this was working at some stage...
thanks in advance!

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

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

发布评论

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

评论(1

挽梦忆笙歌 2024-12-09 12:06:23

在您的函数中,

function checkLinkedDays2() {}

将该行更新

$('#x_StartDateD option').attr('disabled', '');

$('#x_StartDateD option').removeProp('disabled');

BTW: Why do you use the datepicker plugin if you're create your own Solution?

In your function

function checkLinkedDays2() {}

update the line

$('#x_StartDateD option').attr('disabled', '');

to

$('#x_StartDateD option').removeProp('disabled');

BTW: Why do you use the datepicker plugin if you're creating your own solution?

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