我使用twitter-Bootstrap和.net编写了一些代码,以便在按下按钮时显示弹出窗口。这是我的代码:
<a href="#myModal" role="button" class="btn" data-toggle="modal">Launch demo modal</a>
<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-body">
<p>... some info...</p>
</div>
</div>
当我按下按钮时,会出现弹出窗口。但我想让页面上的弹出窗口独立于按钮。我如何使用javascript或其他东西制作这个?
答案 0 :(得分:2)
使用window.onload。
window.onload=function(){
$("#myModal").modal("show");
}
答案 1 :(得分:1)
是的,你可以在页面加载时触发它。
$(function() {
$("#myModal").modal("show");
});