使用 jQuery 直接设置 UIDatePickers 最小、最大日期属性

发布于 2024-12-01 16:58:34 字数 700 浏览 0 评论 0原文

我有以下 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 技术交流群。

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

发布评论

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

评论(1

零度° 2024-12-08 16:58:34

我认为你应该这样做:

 var newMaxDate = //set your new date here
 $( "#datepickertwo" ).datepicker( "option" , 'maxDate', newMaxDate); 

I think you should do:

 var newMaxDate = //set your new date here
 $( "#datepickertwo" ).datepicker( "option" , 'maxDate', newMaxDate); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文