使用 jQuery 直接设置 UIDatePickers 最小、最大日期属性
我有以下 jQuery 代码来初始化日期选择器:
$( "#datepickertwo" ).datepicker(
{
dateFormat: 'dd-mm-yy',
buttonImage: 'images/calendar.gif',
showOn: "both",
buttonImageOnly: true,
maxDate: new Date(parseInt(<?php echo($maxDate[0]);?>),parseInt(<?php echo($maxDate[1]);?>),parseInt(<?php echo($maxDate[2]); ?>)),
minDate: new Date(parseInt(<?php echo($minDate[0]);?>),parseInt(<?php echo($minDate[1]);?>),parseInt(<?php echo($minDate[2]); ?>)),
}
);
在用户交互期间,日期选择器的最小和最大日期将需要更改。
我的问题是,在创建 UIDatePicker 后如何直接更改它的 min max 属性?
I have the following jQuery code to initialise a datepicker:
$( "#datepickertwo" ).datepicker(
{
dateFormat: 'dd-mm-yy',
buttonImage: 'images/calendar.gif',
showOn: "both",
buttonImageOnly: true,
maxDate: new Date(parseInt(<?php echo($maxDate[0]);?>),parseInt(<?php echo($maxDate[1]);?>),parseInt(<?php echo($maxDate[2]); ?>)),
minDate: new Date(parseInt(<?php echo($minDate[0]);?>),parseInt(<?php echo($minDate[1]);?>),parseInt(<?php echo($minDate[2]); ?>)),
}
);
During user interaction, the datepicker's min and max dates will need to change.
My question is, how can I directly change the min max properties of the UIDatePicker after it has already been created?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你应该这样做:
I think you should do: