我正在使用Twitter Bootstrap的Modal插件,它一切正常,控制檯顯示沒有javascript錯誤,但我的問題是它在頁面加載時打開?我關閉模式,然後可以重新打開它沒有問題,但它只是在我重新加載頁面時保持打開狀態。這裏是我的標記jQuery/Bootstrap - Twitter的引導模式打開頁面加載?
HTML 啓動模式
<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria- labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Modal header</h3>
</div>
<div class="modal-body">
<p>One fine body…</p>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
<button class="btn btn-primary">Save changes</button>
</div>
</div>
的Javascript
漂亮其實很簡單:P,
<script>
$('#myModal').modal()
</script>
創建一個簡單的模式嘿,我有這個發生過。我正在學習一個教程,並使用HTML標記來調用它,並使用jquery調用div id。一旦我殺死了jq調用,它用HTML標記加載得很好。這可能是你遇到的問題嗎? –
是的,如果對模式及其觸發器使用正確的標記,則不需要JavaScript調用。這是bootstrap的強大功能之一 - **動態**行爲通過**靜態**標記。調用'$('#myModal').modal()'有效地告訴模態立即顯示,而不是點擊。 – Oliver