4

我使用 twitter bootstrap 创建的任何模式都不会出现。我不确定自己做错了什么,因为我使用引导程序提供的代码设置了测试模式,但它仍然无法正常工作。

这是我的代码(仅正文):您需要链接到 bootstrap.js、bootstrap-modal.js、jquery.js 和 bootstrap.css

<body>
    <div class="modal hide" id="myModal">
        <div class="modal-header">
            <button type="button" class="close" data-dismiss="modal">
                &times;
            </button>
            <h3>Modal header</h3>
        </div>
        <div class="modal-body">
            <p>
                Modal body would go here...
            </p>
        </div>
        <div class="modal-footer">
            <a href="#" class="btn" data-dismiss="modal">Close</a>
            <a href="#" class="btn btn-primary">Save changes</a>
        </div>
    </div>

    <a data-toggle="modal" href="#myModal">Show Modal</a>
</body>

以下是引导模式所需的引导包和 jquery 的链接: bootstrap package jquery

4

2 回答 2

5

我的问题是我同时包含了 boostrap.js 和 bootstrap-modal.js。显然,如果你包含 bootstrap.js,你不应该也包含 bootstrap-modal.js,因为 boostrap.js 导入了所有它兼容的 javascript 插件。类似的东西。删除我的 boostrap-modal.js 脚本链接后,它起作用了。

于 2012-07-26T18:54:45.460 回答
4

您必须致电:

<script>
   $('#myModal').modal('show')
</script>

</body>标签之后。或者,如果您只想在用户单击某些内容时调用它:

$('#button_id').click(function(){
    $('#myModal').modal('show')
});
于 2012-07-15T01:03:55.733 回答