使用Datepicker中的altField更新多个输入

时间:2010-06-23 08:21:00

标签: jquery uidatepicker jquery-ui-datepicker

有人可以告诉我修改以下内容的正确方法:

$("#datepicker01").datepicker({

  numberOfMonths: 2,
  minDate: dd, 
  maxDate: '+1M +31D',
  hideIfNoPrevNext: true,
  altField: 'input#chooseDate01',
  altFormat: 'DD, d MM yy',
  beforeShowDay: noWeekendsOrHolidays
 });

我需要在altField元素中再添加5,即'input#chooseDate02'等。它是否如此简单:

altField: 'input#chooseDate01' 'input#chooseDate02', and so on.

感谢。

1 个答案:

答案 0 :(得分:1)

altField属性采用jQuery选择器,因此您可以执行此操作

altField: 'input#chooseDate01, input#chooseDate02'

请参阅http://api.jquery.com/multiple-selector/

或者您可以按类选择,例如

altField: 'input.choose-date-class'