我有一个模态代码和模态开启链接。
当我点击链接模式打开后,后面的JavaScript发出Ajax请求并在模态中填充元素值。
工作正常。
但是我需要在模态对话框中生成模态开启链接,再次打开相同的模态。
我想打开另一个窗口,以便这个新窗口与第一个窗口重叠。
所以两个(或更多)打开相同模态的弹出窗口。
首先,当我在模态窗口中生成模态开启链接时,链接已经死了。
我从模态开启链接中删除data-toggle="modal"
并将此jQuery代码用于侦听并在单击链接时打开模态:
$(".modal_order_details_opener").click(function () {
$('#modal_order_details').modal('show');
});
这可行,但不是我想要的方式。
它打开原始模态并且链接在那里,当我点击该链接打开另一个窗口浏览器打开另一个模态对话框但原始模态对话框消失。
所以问题是:我可以有两个或更多相同模态的打开窗口吗? 一个模态代码,多个打开的对话框实例。
我看过的所有例子都是两个不同的模态是开放的 我问同一个模态和更多对话框同时打开。 基本上从模态中打开模态。
相同的模态。
感谢。
答案 0 :(得分:-1)
以下代码将解答您的问题。如果它不起作用,请让我知道我会以另一种方式思考。
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Large Modal</h2>
<!-- Trigger the modal with a button -->
<button type="button" class="btn btn-info btn-lg" data-toggle="modal" data-target="#myModal">Open Large Modal</button>
<!-- Modal -->
<div class="modal fade" id="myModal" role="dialog">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Modal Header</h4>
</div>
<div class="modal-body">
<p>This is a large modal.</p>
<button type="button" class="btn btn-info btn-lg" data-toggle="modal" data-target="#myModal2">ClickForAnotherModel</button>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="myModal2" role="dialog">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Another Modal</h4>
</div>
<div class="modal-body">
<p>This is Another Modal on Modal.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>