Jquery调整日期选择器,日期信息
我试图在每一天设置更多信息,而不仅仅是这一天。
我正在直接编辑 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为问题出在链接的 onClick 事件上。所以,如果它适合你;您可以在链接标签之外添加 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: