我在 Rails 应用程序中使用引导程序。我尝试使用引导模式显示对话框,但对话框不适合我。这是我的视图代码。
<div id="creative_attachment_popup" class="modal hide fade" role="dialog">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3>Modal header</h3>
</div>
<div class="modal-body">
<p>Do you eant to continue../p>
</div>
<div class="modal-footer">
<a href="#" class="btn">Close</a>
<a href="#" class="btn btn-primary">Save changes</a>
</div>
</div>
简单地说,我将 js 文件称为
$('#creative_attachment_popup').modal('show');
上面的代码只显示了一个淡入淡出的页面并且不包含任何对话框。当我在控制台中键入上面的 js 行时,它显示以下内容:
<div id="creative_attachment_popup" class="modal hide fade in ui-dialog-content ui-widget-content" role="dialog"> <h1 style="display: block;" aria-hidden="false">…</div>
用我的html参考上面的代码。为什么我会得到这个?