【发布时间】:2014-08-12 19:53:14
【问题描述】:
我已经开始使用 Modals 但是我遇到了一个小问题 - 我正在尝试将其中的几个放在一起,但我的代码中的某些内容将它们全部链接在一起,因此不允许我将不同的内容放入每个所以第一个内容中的任何内容最终都会在所有其他内容中覆盖我在其他机构中编写的任何内容。感谢任何可以帮助我弄清楚我的代码在做什么的人!
<button class="glyphicon glyphicon-folder-open" data-toggle="modal" data-target="#myModal">
</button>
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="myModalLabel">MIDDLE TIER</h4>
</div>
<div class="modal-body">
<div class="bs-example">
<table class="table">
<thead>
<tr>
<th>RUN JOB</th>
<th>ACTION</th>
<th>TARGET</th>
<th>MODEL</th>
<th>REPORT KEY</th>
<th>REPORT NAME</th>
</tr>
</thead>
<tbody>
<tr>
<td>GL LOAD</td>
<td>PROFILE/IMPORT</td>
<td>CR Staging (For All Funds)</td>
<td>Not Indicated- To Be Developed</td>
<th>N/A</th>
<th>N/A</th>
</tr>
</tbody>
</table>
</div>
</div>
<div class="modal-footer">
</div>
</div>
</div>
</div>
【问题讨论】:
-
您能否更具体地了解您的问题...这是我的模态问题,也许它可以帮助您:stackoverflow.com/questions/25257927/…
标签: html css modal-dialog jscript