我有問題渲染使用jQuery的引導模式,這是我到目前爲止有:引導模態的Jquery沒有渲染或顯示正確
HTML
<div id="myModal" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">Confirmation</h4>
</div>
<div class="modal-body">
<p>Do you want to save changes you made to document before closing?</p>
<p class="text-warning"><small>If you don't save, your changes will be lost.</small></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
jQuery的
$('#update_modal').on('click', function() {
console.log("clicked");
jQuery.noConflict();
$("#myModal").modal('show');
})
有是一個按鈕,其ID爲「update_modal」。
這是一個Snapshot它看起來像。正如你所看到的,它沒有正確渲染所有東西,我也無法點擊任何關閉模式的地方。
請有人告訴我,如果我錯過了任何東西。謝謝
請分享你的整個'HTML'結構。 – Shiladitya