使用bootstrap的本地副本在django中呈现网页

时间:2016-12-21 05:18:29

标签: twitter-bootstrap bootstrap-modal django-bootstrap3

我有django网络服务器。我在bootstrap页面中使用了html。这就是我把它包括在内并且工作正常的方式,

    {% load static %}
    <script src="{% static 'jquery/jquery.min.js'%}"></script>

    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">

但我想使用bootstrap的本地副本。所以我从这个link下载引导程序后做了以下更改(zip文件包含三个目录cssfontsjs,我将其复制到django& #39; s静态目录)。

    {% load static %}
    <script src="{% static 'jquery/jquery.min.js'%}"></script>

    {% load static %}
    <link rel="script" type="text/javascript" href="{% static 'js/bootstrap.min.js'%}">

    {% load static %}
    <link rel="stylesheet" type="text/css" href="{% static 'css/bootstrap.min.css'%}">

一切似乎都很好。但是,当我尝试显示bootstrap modals这是我网页的一部分时,我收到以下错误,

    Uncaught TypeError: $(...).modal is not a function
        at zoomIn ((index):76)
        at HTMLImageElement.onclick ((index):1)

我没有下载正确版本的bootstrap?我做错了什么?

0 个答案:

没有答案