Jquery datebox 日历周开始日

发布于 2024-11-06 20:39:10 字数 157 浏览 1 评论 0原文

我正在尝试 Jquery Mobile DateBox。

请参阅此处:移动日期框

在日历中,我需要每周从星期一而不是星期日开始。

请问我该如何设置?

I am trying out Jquery Mobile DateBox.

See here: mobile date box

In the calendar I need to week to start on Monday instead of Sundays.

How can I set this please?

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

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

发布评论

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

评论(3

为你拒绝所有暧昧 2024-11-13 20:39:10

在日历输入的“数据选项”中使用值为“1”的“overrideCalStartDay”。这对我有用。

<input ... data-options='{"mode":"calbox", "overrideCalStartDay": 1}' ... />

Use "overrideCalStartDay" with value "1" in the "data-options" of calendars input. It works for me.

<input ... data-options='{"mode":"calbox", "overrideCalStartDay": 1}' ... />
烟燃烟灭 2024-11-13 20:39:10

在源代码中,以下数组保留星期几:

daysOfWeek: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],

也许如果您通过一些调整(如果需要)更改此处的顺序,您可以根据需要更改顺序。

In the source code the following array keeps the days of the week:

daysOfWeek: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],

Perhaps if you change the order here with a bit of tweaking (if necessary) you can change the order as you need.

暗恋未遂 2024-11-13 20:39:10

好吧,这有点事后,但我已经开始添加这个选项了。碰巧的是,几年前,我的一位同事从周一开始了我们的工作日历,从那以后我就讨厌它了。然而,有几个地方提出了要求,现在它已经存在了。

<input ... data-options='{"mode":"calbox", "calStartDay": 1}' ... />

其中calStartDay采用标准形式:0=星期日,1=星期一,... 6=星期六。

Well, this is a bit after the fact, but I have gotten around to adding this option. As it happens, a few years back, a colleague of mine started our work calendars on Monday, and I have hated it ever since. However, it was requested a few places, and it now exists.

<input ... data-options='{"mode":"calbox", "calStartDay": 1}' ... />

Where calStartDay is in the standard form of 0=Sunday, 1=Monday, ... 6=Saturday.

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