Mootools DatePicker 独立版

发布于 2025-01-03 12:33:56 字数 379 浏览 2 评论 0原文

我在使用 Mootools DatePicker 时遇到问题。

当我使用独立版本时(无需单击即可显示 datePicker ,它会显示一个空框)

这是我到目前为止所拥有的:

http://jsfiddle.net/PcHkD/3/

如您所见,如果您在输入内部单击,日期显示正确,但 onLoad 它只显示一个空框。

知道我做错了什么吗?

谢谢

I have a problem using the Mootools DatePicker .

When i use the standalone version (no clicks needed to show the datePicker , it show an empty box)

Here is what i have until now :

http://jsfiddle.net/PcHkD/3/

As you can see if you click inside the input the date show's correctly but onLoad it just show an empty box .

Any idea of what I'm doing wrong ?

Thanks

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

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

发布评论

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

评论(1

獨角戲 2025-01-10 12:33:56

它可以通过调用 focus() 来解决,虽然不太漂亮,但它可以完成工作。

window.addEvent('domready', function() {
  $('departure').focus();
});

我添加了我现在正在使用的解决方案..如果有人想改进它,欢迎您:

http://jsfiddle .net/PcHkD/12/

我仍然需要修复两个日历之间的位置

It can be solved by calling a focus() not pretty but it does the job .

window.addEvent('domready', function() {
  $('departure').focus();
});

I added the solution I'm using now .. if someone wants to improve it you are welcome :

http://jsfiddle.net/PcHkD/12/

I still need to fix the positions between the 2 calendars

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