Twitter ブートストラップを使用しており、モーダル ポップアップ ウィンドウを開くリンクがあります。ここで、モーダル自体で別のモーダル ポップアップを開きたいと思います。
問題は、この別のモーダルが開かれることですが、古いモーダルも開かれたままです。また、同じ効果 (背景が 50% 暗くなる) が再び適用され、背景はすべて黒になります。
誰かがその解決策を知っていますか?
Twitter ブートストラップを使用しており、モーダル ポップアップ ウィンドウを開くリンクがあります。ここで、モーダル自体で別のモーダル ポップアップを開きたいと思います。
問題は、この別のモーダルが開かれることですが、古いモーダルも開かれたままです。また、同じ効果 (背景が 50% 暗くなる) が再び適用され、背景はすべて黒になります。
誰かがその解決策を知っていますか?
これを試して
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link href="Styles/bootstrap.css" rel="stylesheet" type="text/css" />
</head>
<body>
<input type="button" name="name" class="btn btn-danger" value="open first modal" onclick="$('#modal1').modal('show')"/>
<div class="modal hide fade" id="modal1">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">
×</button>
<h3>
Modal 1 header</h3>
</div>
<div class="modal-body">
<a onclick="$('#modal1').modal('hide');$('#modal2').modal('show');" class="btn btn-success">Open Second modal</a>
</div>
<div class="modal-footer">
<a href="#" class="btn">Close</a> <a href="#" class="btn btn-primary">Save changes</a>
</div>
</div>
<div class="modal hide fade" id="modal2">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">
×</button>
<h3>
Modal 2 header</h3>
</div>
<div class="modal-body">
<p>
One fine body…</p>
</div>
<div class="modal-footer">
<a href="#" class="btn">Close</a> <a href="#" class="btn btn-primary">Save changes</a>
</div>
</div>
<script src="Scripts/jquery-1.10.1.min.js" type="text/javascript"></script>
<script src="Scripts/bootstrap.js" type="text/javascript"></script>
</body>
</html>