如何使用 jQuery 关闭 Bootstrap 模态窗口
答案:使用modal('hide')
方法
您可以使用 jQuery 简单地使用 modal('hide')
方法在 Bootstrap 中隐藏或关闭模态窗口。 其他相关的 Bootstrap 的模态方法是 modal('show')
和 modal('toggle')
。
让我们试试这个例子,它在点击按钮时动态关闭 Bootstrap 模态:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery Close Bootstrap Modal Window on Button Click</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script>
$(document).ready(function(){
// Open modal on page load
$("#myModal").modal('show');
// Close modal on button click
$(".btn").click(function(){
$("#myModal").modal('hide');
});
});
</script>
<style>
.bs-example{
margin: 20px;
}
</style>
</head>
<body>
<div class="bs-example">
<div id="myModal" class="modal fade" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Modal Title</h5>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<p>This is a simple Bootstrap modal. Click the "Close button", "cross icon" or "dark gray area" to close or hide the modal.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary">Close Modal</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
FAQ 相关问题解答
以下是与此主题相关的更多常见问题解答:
Advertisements