當我嘗試在Bootstrap中加載一個模式時,它顯示當我刷新頁面,但是當我點擊按鈕時不顯示。我希望我的模式只在用戶點擊按鈕時彈出。Bootstrap模式沒有顯示在點擊
我HTML文件設置如下:
<head>
<meta charset="utf-8">
<title>my title here</title>
<link rel="stylesheet" type="text/css" href="/static/css/bootstrap.min.css">
<script src="/static/js/jquery-3.2.1.min.js"></script>
<script src="/static/js/popper.min.js"></script>
<script src="/static/js/bootstrap.min.js"></script>
<script src="/static/Highcharts-5.0.14/code/highcharts.js"></script>
<script src="/static/Highcharts-5.0.14/code/modules/exporting.js"></script>
<!-- Our Custom CSS -->
<link rel="stylesheet" href="/static/css/style_charts_black.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
</head>
我已經複製從引導教程網站驗證碼:
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal" style="float:right; margin-right:100px">
Launch demo modal
</button>
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="myModalLabel">Modal title</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<script>$('#myModal').modal('show')</script>
我沒有得到在任何jQuery的錯誤JavaScript控制檯。我也嘗試將上面的最後一行更改爲.modal('toggle'),但它沒有幫助。
不需要使用** $('#myModal')。modal('show')** – LSKhan
** **此按鈕**切換** **目標**元素與** ID =#myModal ** – LSKhan