jQuery UI:为*内联*日期选择器设置默认日期
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过使用
defaultDate
选项?来自文档:Have you tried using the
defaultDate
option? From the docs:调用
$('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