gpt4 book ai didi

jquery - Bootstrap 4 和 'collapse' 函数的问题

转载 作者:行者123 更新时间:2023-11-28 16:57:18 26 4
gpt4 key购买 nike

我在使用 Bootstrap 中的折叠功能时遇到问题。解决这个问题的许多其他帖子建议应该确保 jQuery 高于 Bootstrap 。我已经注意这样做了,但是错误 $(...).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>

其他 Bootstrap 功能运行良好。关于如何解决这个问题的任何想法?我可能使用了过时形式的 jQuery 吗?

最佳答案

编辑:伙计,您缺少用于 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...

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

关于jquery - Bootstrap 4 和 'collapse' 函数的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55883692/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com