Clear the value of bootstrap-datepicker

前端 未结 10 1871
甜味超标
甜味超标 2020-12-28 12:56

I am using bootstrap-datepicker from here: https://github.com/eternicode/bootstrap-datepicker

version: 2.3.2

I am having trouble to clear the date values of

10条回答
  •  梦毁少年i
    2020-12-28 13:27

    I was having similar trouble and the following worked for me:

    $('#datepicker').val('').datepicker('update');
    

    Both method calls were needed, otherwise it didn't clear.

提交回复
热议问题