jQuery UI:为*内联*日期选择器设置默认日期

发布于 2024-11-25 07:26:03 字数 330 浏览 1 评论 0原文

我正在使用 jQuery UI 作为 内联 日期选择器。通过简单地在

上调用它,我得到了一个很好的内联日期选择器,但我不知道如何设置要选择的默认日期。

JS:

$("div.date").datepicker({});

HTML:

I am using jQuery UI for an inline datepicker. By simply calling it on a <div> I get a nice inline datepicker, but I do not see how I can set the default date that is to be selected.

JS:

$("div.date").datepicker({});

HTML:

<div class="date"></div>

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

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

发布评论

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

评论(2

笑红尘 2024-12-02 07:26:03

您是否尝试过使用 defaultDate 选项?来自文档:

如果该字段为空,则设置首次打开时突出显示的日期。通过 Date 对象或当前 dateFormat 中的字符串指定实际日期,或从今天算起的天数(例如 +7)或一串值和周期('y' 表示年,'m' 表示月, 'w' 表示周,'d' 表示天,例如 '+1m +7d'),或 null 表示今天。

代码示例

使用指定的 defaultDate 选项初始化日期选择器。

$( ".selector" ).datepicker({ defaultDate: +7 });

Have you tried using the defaultDate option? From the docs:

Set the date to highlight on first opening if the field is blank. Specify either an actual date via a Date object or as a string in the current dateFormat, or a number of days from today (e.g. +7) or a string of values and periods ('y' for years, 'm' for months, 'w' for weeks, 'd' for days, e.g. '+1m +7d'), or null for today.

Code examples

Initialize a datepicker with the defaultDate option specified.

$( ".selector" ).datepicker({ defaultDate: +7 });
不离久伴 2024-12-02 07:26:03

调用 $('div.date').datepicker( "setDate" , date); 或者您可以在打开之前设置默认值,如 Justin Ethier 显示的那样

Call $('div.date').datepicker( "setDate" , date); or you can set the default prior to opening as displayed by Justin Ethier

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