我在bootstrap-datetimepicker.js
的第752行有一个JS错误。
单击“时间”按钮时也会发生这种情况。
错误是:
TypeError: 'undefined' is not a function(evaluating'expanded.collapse('hide')')
为什么会这样?我该如何解决?
答案 0 :(得分:1)
根据issue on github,当您不包含bootstrap.js
文件时会发生此错误,因为其中定义了collapse
。
确保包含相应的版本:
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>