Bootstrap 4和'collapse'功能的问题

时间:2019-04-27 18:35:03

标签: jquery html css twitter-bootstrap

我在Bootstrap中的折叠功能遇到问题。许多其他有关此问题的文章建议,应确保jQuery在引导程序之上。我已经小心执行此操作,但是错误$(...).collapse is not a function仍然存在:

<head>

<!-- JQuery -->
<script src="http://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.0/jquery-ui.min.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">  

<!-- popper for tooltips -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js">

<!-- bootstrap 4 -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css">

<!-- chart.js for data visualization -->
<script src="https://cdn.jsdelivr.net/npm/chart.js@2.8.0"></script>



</head>

其他引导程序功能运行正常。关于如何解决这个问题有什么想法吗?我也许正在使用一种过时的jQuery形式?

1 个答案:

答案 0 :(得分:1)

编辑:伴侣,您缺少Bootstrap的JS软件包。您实际上需要添加一个插件才能调用它。

https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js

记住要确保在jQuery对象上调用它。

const iWillWork = $('.el')
const iWillNotWork = document.querySelectorAll('.el')

iWillWork.collapse()
iWillNotWork.collapse() // Collapse is not a fucntion...

如果不是这种情况,请在您的问题中添加更多详细信息。