0

我有一个 jquery ui datepicker,我需要从中选择日期,然后将其输出到一个 div 中,然后为每个 div 添加一天。

html

<?php $date = $_POST['datepicker']; ?>

<input name="datepicker" class="calendarInput" type="text" id="datepicker">

<div>
<?php echo($date) ?>
</div>

<div>
<?php echo($date) ?>
</div>

<div>
<?php echo($date) ?>
</div>

提前感谢您的帮助。

4

1 回答 1

0

You can do it using the onSelect callback.

$('#datepicker').datepicker({
   onSelect: function(dateText) {
      var date = $(this).datepicker('getDate');
      date.setDate(date.getDate() + 1);
   }
});

Assign ids to your divs and then you can modify the contents.

于 2012-09-18T14:51:22.737 回答