Bootstrap-datetimepicker is not working with jQuery 3.1.1. I need to use the same jQuery library to run all the other dependent functions.
问问题
26445 次
2 回答
13
我得到同样的错误。
input.size is not a function TypeError
修改bootstrap-datetimepicker.js行号:2253
if (input.size() === {
至
if (input.length === 0) {
行号:2264
if (element.find('.datepickerbutton').size() === 0) {
至
if (element.find('.datepickerbutton').length === 0) {
添加CSS
.input-group.date .dropdown-menu{
display: block;
}
于 2018-07-19T07:32:58.850 回答