gpt4 book ai didi

javascript - bootstrap.min.js 3.0.0 中缺少 jQuery

转载 作者:行者123 更新时间:2023-12-02 18:22:18 25 4
gpt4 key购买 nike

我在让 twitter Bootstrap 在 Django 网站上正常工作时遇到了一些问题。目前我的 Twitter Bootstrap 部分有效。

例如,我的 HTML 文件是:

    <!DOCTYPE html>
{% load staticfiles %}

<head>

<link rel="stylesheet" href="{% static "bootstrap/css/bootstrap.min.css" %}" type="text/css" media="screen" />
<script type="text/javascript" src="{% static "bootstrap/js/bootstrap.min.js" %}" ></script>

</head>

<html>
<body>

<span class="badge badge-success" >HI!</span>
<span class="badge">1</span>
<span class="badge badge-warning">4</span>
<span class="badge badge-important">6</span>
<span class="badge badge-info">8</span>
<span class="badge badge-inverse">10</span>

</body>
</html>

此代码将显示徽章,但不显示徽章的颜色。仅显示一个灰色徽章,每个徽章中都有一些文本。我运行了我的代码并用 FireBug 检查了它,它说:

    Uncaught ReferenceError: jQuery is not defined                  bootstrap.min.js:6

我假设我在这个项目中缺少 jQuery。

有人可以提供有关如何解决该问题的分步流程吗?我是网络开发新手。感谢您的所有投入!非常感谢!

最佳答案

你需要有jquery库以便让 Bootstrap 正常运行。

Plugin dependencies

Some plugins and CSS components depend on other plugins. If you include plugins individually, make sure to check for these dependencies in the docs. Also note that all plugins depend on jQuery (this means jQuery must be included before the plugin files).

放这个

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>

行前

<script type="text/javascript" src="{% static "bootstrap/js/bootstrap.min.js" %}" ></script>

另外,Bootstrap 3 上没有这样的东西 badge-success。也许你使用了错误的版本

关于javascript - bootstrap.min.js 3.0.0 中缺少 jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18714849/

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