我有簡單的html頁面來顯示引導模態,但是當我啓動模型時 - 它被模態背景覆蓋, 我檢查了myModal - 1040的z-索引和模態背景是1030 檢查了計算器的所有職位,但他們沒有解決我的問題 請幫助由模態背景覆蓋的自舉模型
<html>
<head>
<link href="" rel="stylesheet">
<link href="Content/bootstrap.min.css" rel="stylesheet">
<script src="Scripts/jquery-1.10.2.min.js"></script>
<script src="Scripts/bootstrap.min.js"></script>
</head>
<body>
<a href="#myModal" role="button" class="btn" data-toggle="modal">Launch demo modal</a>
<div id="myModal" class="modal hide fade in" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">X</button>
<h3 id="myModalLabel">Log in</h3>
</div>
<div class="modal-body">
<form class="modal-form" id="loginform">
<input type="text" name="username" placeholder="login" id="username">
<input type="text" name="password" placeholder="password" id="userpassword">
</form>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
<button class="btn btn-success">Login</button>
</div>
</div>
</body>
</html>
「檢查了所有文章在stackoverflow」不,你沒有,因爲這是平坦的不可能的。如果你列出*爲什麼/如何*你做的每個帖子檢查沒有幫助,你的問題會好得多;事實上,這種說法只是噪音。 –
其實我複製了很多來自不同網站的模態對話框代碼,這些網站在他們的網站上工作。但不適合我。我玩了一段時間,並得到它的工作。謝謝 –