gpt4 book ai didi

javascript - Bootstrap Modal 不显示

转载 作者:行者123 更新时间:2023-11-30 06:26:51 27 4
gpt4 key购买 nike

我无法显示模态。我正在使用 Bootstrap 3.0.3。当我单击按钮时,屏幕变灰但不会弹出模式。 css 和 js 文件与 html 文件位于同一目录中。我知道此代码有效,因为我从 http://www.tutorialrepublic.com/codelab.php?topic=bootstrap&file=activate-modals-via-javascript 复制并粘贴了它.所以这让我觉得我在头部声明我的 css 和 js 文件的方式有问题。任何帮助将不胜感激!

<!DOCTYPE html>
<html lang="en">
<head>
<title>Example of Twitter Bootstrap Modals</title>
<link rel="stylesheet" type="text/css" href="bootstrap.min.css">
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript" src="bootstrap.min.js"></script>
<script type="text/javascript">
$(function(){
$(".btn").click(function(){
$("#myModal").modal('show');
});
});
</script>
<style type="text/css">
.bs-example{
margin: 20px;
}
</style>
</head>
<body>
<div class="bs-example">
<!-- Button HTML (to Trigger Modal) -->
<a href="#" class="btn btn-large btn-primary">Launch Demo Modal</a>

<!-- Modal HTML -->
<div id="myModal" class="modal hide fade">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3>Confirmation</h3>
</div>
<div class="modal-body">
<p>Do you want to save changes you made to document before closing?</p>
<p class="text-warning"><small>If you don't save, your changes will be lost.</small></p>
</div>
<div class="modal-footer">
<a href="#" class="btn">Close</a>
<a href="#" class="btn btn-primary">Save changes</a>
</div>
</div>
</div>
</body>
</html>

最佳答案

您使用具有样式的类 .hide:

.hide{
display: none!
}

这些规则总是隐藏 block

更好的解决方案是1.为此添加特殊类:

.hide-block{
display: none;
}

<div id="myModal" class="modal hide-block fade">

2.第二种方式是使用内联样式

<div id="myModal" class="modal fade" style="display: none">

但这不如第一个方案好

关于javascript - Bootstrap Modal 不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20586279/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com