Jquery调整日期选择器,日期信息

发布于 2025-01-08 20:49:36 字数 816 浏览 0 评论 0原文

我试图在每一天设置更多信息,而不仅仅是这一天。

我正在直接编辑 datepicker 文件。这是在第 1556 行左右。

旧代码。

(otherMonth ? ' ui-priority-secondary' : '') + // distinguish dates from other months
                            '" href="#">' + printDate.getDate() + '</a>')) + '</td>';

编辑后的代码。

(otherMonth ? ' ui-priority-secondary' : '') + // distinguish dates from other months
                            '" href="#"><div class="dinfo"><div class="'+urdayn+'">' + printDate.getDate() + '</div><div class="udayt">test</div></div></a>')) + '</td>';

PS urdayn 只是一个类名。

所以第一个代码是默认代码,日历可以使用它,但是第二个代码,它不能正常工作。一切都很好,更改月份显示我希望它们显示的日期,但如果我点击一天,然后尝试要在我单击后转到其他月份,日历会隐藏,并且按钮 - 上一个、下一个和中心标题显示未定义的 NaN。 有什么想法吗?

I'm trying to set more information in each day instead of just the day.

I'm directly editing the datepicker file.This is around line 1556.

The old code.

(otherMonth ? ' ui-priority-secondary' : '') + // distinguish dates from other months
                            '" href="#">' + printDate.getDate() + '</a>')) + '</td>';

The edited code .

(otherMonth ? ' ui-priority-secondary' : '') + // distinguish dates from other months
                            '" href="#"><div class="dinfo"><div class="'+urdayn+'">' + printDate.getDate() + '</div><div class="udayt">test</div></div></a>')) + '</td>';

P.S urdayn is just a name of class.

SO first code is the default code, and the calendar works with it, but the second code, it's not working properly.Everything is ok, changing months showing dates how i want them to show, but if i click on a day, and try to get to other month after i've clicked, the calendar hides, and the buttons - prev,next and the center header are showing undefined NaN.
Any ideas ?

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

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

发布评论

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

评论(1

來不及說愛妳 2025-01-15 20:49:37

我认为问题出在链接的 onClick 事件上。所以,如果它适合你;您可以在链接标签之外添加 div。像这样:

<div class="dinfo"><div class="'+urdayn+'"><a class="ui-state-default'
...
printDate.getDate() + '</a></div>'

I think the problem is the onClick event of the link. So if it's works for you; you can add div out of link tags. Like that:

<div class="dinfo"><div class="'+urdayn+'"><a class="ui-state-default'
...
printDate.getDate() + '</a></div>'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文