Add a day with selected date using Jquery datepicker

后端 未结 3 672
北恋
北恋 2021-01-13 08:04

I have been trying to add a day for another date field with date selected of current field

     ,
 onSelect: function(date) {
     var date2 = $(\'.currDate\         


        
3条回答
  •  感动是毒
    2021-01-13 09:01

    It is because, currDate might be empty.

    If currDate is emtpy $('.currDate').datepicker('getDate') will return null in which case date2.setDate(date2.getDate()+1); could throw the error

    Update:

    $(function() {
        $('#nxtDate').datepicker({
            dateFormat: "dd-M-yy", 
        });
        $("#currDate").datepicker({
            dateFormat: "dd-M-yy", 
            minDate:  0,
            onSelect: function(date){
                var date2 = $('#currDate').datepicker('getDate');
                date2.setDate(date2.getDate()+1);
                $('#nxtDate').datepicker('setDate', date2);
            }
        });
    })
    

提交回复
热议问题