<div class="modal hide" id="modalId">
<div class="modal-header" style="padding:30px 10px">
<h3 style="float:left">Some text here</h3>
<input type="image" src="image_path" alt="loading..." class="pull-right" />
</div>
<div class="modal-body" style="clear:both">
<!-- I have a table here-->
</div>
<div class="modal-footer">
<!-- I have a button here -->
</div>
</div>
将在按钮单击时调用的模态代码
$('#modalId').modal({
backdrop: 'static',
keyboard: false,
show: true
});
在这里,我面临的问题是,在模态弹出窗口中,即将出现一个黑色窗口。
这在 Firefox、IE 8 中完美运行,但在 IE7 中却不行。
我尝试了很多,但在这里找不到问题。:( 有人可以看看吗。thubjsdaps14