jQuery bootstrap-datetimepicker change event

前端 未结 3 551
渐次进展
渐次进展 2020-12-15 15:47

I am using bootstrap-datetimepicker plugin from Jonathan Peterson on my project.

I\'m having a problem with change event :

If I define even

3条回答
  •  感情败类
    2020-12-15 16:34

    Please use this code to get change event of datetimepicker:

     $('.datepicker').datetimepicker(
        { format: 'MM/DD/YYYY' }).on('dp.change', function (e) {  });
    

提交回复
热议问题