目前,只有当用户点击链接时才会加载以下代码。
我希望在没有用户点击的情况下加载页面。
<script>
$(document).ready(function() {
// Support for AJAX loaded modal window
$(document).on('click', '.btn-modal', function() {
$.get($(this).attr('data-target'), function(data) {
$('#modal').html(data);
$('#modal').modal('show');
}, 'html');
});
});
</script>
<!-- Modal window to load dynamic content -->
<div class="modal hide fade customDialog" id="modal"></div>
<a class="btn btn-modal" data-target="page.html" >Launch Modal</a>
答案 0 :(得分:4)
$(document).ready(function() {
// Support for AJAX loaded modal window
$(document).on('click','.btn-modal',function() {
$.get($(this).attr('data-target'), function(data) {
$('#modal').html(data);
$('#modal').modal('show');
}, 'html');
});
// here write
$('.btn-modal').click();
// if you have multiple button then keep filter
// eg.
// $('.btn-modal:eq(0)').click(); // for first button
// $('.btn-modal:eq(1)').click(); // for second button and so more
});
答案 1 :(得分:2)
只需将其添加到$(document).ready()
处理程序的末尾:
$('.btn-modal:first').click();