Bootstrap datepicker not close automatically after picking a date

前端 未结 12 1535
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-24 12:41

I use the latest Bootstrap datepicker.js. All works fine except that when I pick a date from the drop down, it does not automatically close it. I searched web and tried to u

12条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-24 13:38

    This is working for me.

    $(".date-picker").datepicker( {
        format: "yyyy-mm-dd",
    }).on('change', function (ev) {
        $(this).datepicker('hide');
    });
    

提交回复
热议问题