我想使用 Ajax 在模态窗口中插入一些东西,所以我尝试手动打开模态窗口。代码看起来像这样
$(function(){
$('#modal-from-dom').modal({
backdrop: true,
keyboard: true
});
$('#modalbutton').click(function(){
$('#my-modal').bind('show', function () {
// do sth with the modal
});
$('#modal-from-dom').modal('toggle');
return false;
});
});
HTML 是直接从 bootstrap js 页面复制的
<div id="modal-from-dom" class="modal hide fade">
<div class="modal-header">
<a href="#" class="close">×</a>
<h3>Modal Heading</h3>
</div>
<div class="modal-body">
<p>One fine body…</p>
</div>
<div class="modal-footer">
<a href="#" class="btn primary">Primary</a>
<a href="#" class="btn secondary">Secondary</a>
</div>
</div>
<button id="modalbutton" class="btn">Launch Modal</button>
所以问题是第一次单击按钮似乎工作得很好,第二次单击后模态窗口显示 1 秒左右然后消失。如果我将“切换”更改为“显示”,第二次单击后背景不会完全消失。我该如何调试呢?