Django Bootboxjs没有显示

时间:2016-01-24 21:49:51

标签: javascript jquery html twitter-bootstrap dialog

我无法运行它。 我已将文件添加到我的js文件夹中。 我联系了它:

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

我和其他文件一样,所以我觉得这很有效。

我尝试过来自页面的简单代码,但没有对话框。

    <p>Content here. <a class="alert" href=#>Alert!</a></p>

<!-- JS dependencies -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="bootstrap.min.js"></script>

<!-- bootbox code -->
<script src="bootbox.min.js"></script>
<script>
    $(document).on("click", ".alert", function(e) {
        bootbox.alert("Hello world!", function() {
            console.log("Alert Callback");
        });
    });
</script>

0 个答案:

没有答案