我正在运行django-bootstrap-datepicker-plus == 3.0.5。
我试图将事件绑定到datetimepicker,以便在执行特定操作时,属性发生变化。可在此处更改的属性列表:
https://eonasdan.github.io/bootstrap-datetimepicker/
如上面的页面所示,我应该能够使用以下代码将内联设置为true(注意:我可以在Forms.py中初始化表单时将此属性设置为true,并且可以正常工作精细)。
$(document).ready(function() {
$('#datetimepicker').datetimepicker({
inline: true
});
});
不幸的是,这段代码没有任何作用。我应该在上面的代码中使用“ .datetimepicker”吗?此datetimepicker的django版本有什么不同之处导致该代码无法正常工作?
不确定这是否有区别,但是以下代码确实有效:
$('.input-group').on("dp.change", function(e){
console.log('There was a change to the date');
});
感谢您的帮助!