简体   繁体   中英

bootstrap-datepicker update value doesn't work

I'm trying to update the value of a datepicker for bootstrap when clicking a div, however it just does nothing (no errors). The datepicker itself works perfectly fine. Here's the javascript with the options:

    $('#datepicker').datetimepicker({
      format: 'DD-MM-YYYY',
      pickTime: false,
      defaultDate: moment(),
      minDate: moment(),
      maxDate: moment().add(10,'y'),
      showClose: true,
      autoclose: true,
      keepOpen: false,
    });

The javascript I am trying to change the date with:

    $('.someDiv').click(function() {
      $("#datepicker").datetimepicker('setDate', '2016-03-05');
    });

And finally the HTML:

<div class='input-group date' id='datepicker'>
    <input type='text' class="form-control" id="date"/>
    <span class="input-group-addon">
        <span class="glyphicon glyphicon-calendar"></span>
    </span>
</div>

Docs can be found under following link, however the provided method doesn't work: https://bootstrap-datepicker.readthedocs.org/en/latest/

  $(function () {
    $('#datepicker').datetimepicker({
  pickTime: false,
  format: 'DD-MM-YYYY', 
  pickTime: false,
  defaultDate: moment(),
  minDate: moment(),
  maxDate: moment().add(10,'y'),
  showClose: true,
  autoclose: true,
  keepOpen: false
 });

    $('.date-setter').click(function() {
        alert('jj');
      $('#datepicker').data("DateTimePicker").setDate('03-05-2016');
    });

});

回答当前版本

$('#deadline_picker').data("DateTimePicker").date(deadline); 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM