twitter-bootstrap Bootstrap 模式在点击时不显示
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/46652210/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Bootstrap modal not showing up on click
提问by Joss
when I try to load a modal in Bootstrap, it shows up when I refresh the page but doesn't show up when I click on the button. I'd like my modal to pop up only when the user clicks on the button.
当我尝试在 Bootstrap 中加载模态时,它会在我刷新页面时显示,但在我单击按钮时不显示。我希望我的模态仅在用户单击按钮时弹出。
My htmlfile is set up as follows:
我的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>
I've copied this code from the Bootstrap tutorial website:
我已经从 Bootstrap 教程网站复制了这段代码:
<!-- 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>
I do not get any jquery errors in the javascript console. I've also tried to change the last line above to .modal('toggle')but it didn't help.
我在 javascript 控制台中没有收到任何 jquery 错误。我也尝试将上面的最后一行更改为.modal('toggle')但它没有帮助。
回答by Eric G
Your code is fine, you need to include the js files in the <body>tag, not the head.
你的代码很好,你需要在<body>标签中包含 js 文件,而不是头部。
From their documentation:
从他们的文档:
Add our JavaScript plugins, jQuery, and Tether near the end of your pages, right before the closing body tag.
将我们的 JavaScript 插件、jQuery 和 Tether 添加到页面末尾附近,就在结束正文标记之前。
Here is the link where I found that info:
这是我找到该信息的链接:
https://v4-alpha.getbootstrap.com/getting-started/introduction/
https://v4-alpha.getbootstrap.com/getting-started/introduction/
And a codepen of the js files included in the body and your code working correctly:
以及包含在正文中的 js 文件的代码笔,并且您的代码可以正常工作:
回答by Luisa
Your code works fine, if you just want the modal to be activated when you click the button, you do not need the script
您的代码工作正常,如果您只想在单击按钮时激活模态,则不需要脚本
$('#myModal').modal('show')
$('#myModal').modal('show')
<head>
<meta charset="utf-8">
<title>GSMA Intelligence — Visuals</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<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 trigger modal -->
<button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
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">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</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-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
回答by Praveen Kumar Rejeti
Just remove the data toggle in the html tag and write the
只需删除 html 标签中的数据切换并写入
$('#myModal').modal('show')
or
$('#myModal').modal('toggle')

