我如何获得bootstrap模式工作?

时间:2015-03-28 10:59:56

标签: javascript jquery twitter-bootstrap bootstrap-modal

下面是html

<!DOCTYPE html>
<html>
<head>
<title>Title</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="styles/bootstrap.min.css" />
<link rel="stylesheet" type="text/css"
href="styles/bootstrap-theme.min.css" />

<script type="text/javascript" src="js/jquery-1.11.2.min.js"></script>
<script type="text/javascipt" src="js/bootstrap.min.js"></script>
</head>
<body>
<button type="button" class="btn btn-primary btn-lg"
    data-toggle="modal" data-target="#myModal">Launch demo modal
</button>

<!-- Modal for file filter -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog"
    aria-labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal"
                    aria-label="Close">
                    <span aria-hidden="true">&times;</span>
                </button>
                <h4 class="modal-title" id="myModalLabel">Modal title</h4>
            </div>
            <div class="modal-body">...</div>
            <div class="modal-footer">
                <button type="button" class="btn btn-primary">Apply</button>
            </div>
        </div>
    </div>
</div>
</body>
</html>

我已经查找了相同问题的答案。解决方案同样建议在bootstrap.js之前加载jquery.js。尽管照顾同样的事情,我也不会工作。

修改 我现在使用bootstrap-3.3.4和jquery-2.1.3

1 个答案:

答案 0 :(得分:0)

删除

     type="text/javascipt" 

来自bootstrap.min.js脚本。