在不触发按钮或使用jQuery的情况下在页面加载时加载Bootstrap模态

wpx232ag  于 2022-12-07  发布在  Bootstrap
关注(0)|答案(7)|浏览(177)

我试图在不触发HTML按钮或使用jQuery的情况下启动页面加载的Bootstrap模态。
下面是我的代码:

<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap-theme.min.css">
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>

<div id="my-modal" 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">&times;</button>
                <h4 class="modal-title">Title</h4>
            </div>
            <div class="modal-body">
                Hello World!
            </div>
        </div>
    </div> 
</div>

当您呼叫

$('#my-modal').modal('show');

但是我不想调用一个方法或者触发一个按钮。有没有一种方法可以在页面加载时自动启动模态?

演示:Fiddle

368yc8dk

368yc8dk1#

.modal创建一个CSS类并添加display:block。同时为modal div给予in类。


CSS

.modal {
  display:block;
}

HTML语言

<div id="my-modal" class="modal fade in">

**编辑:**默认的关闭函数不起作用,您需要为此添加自定义脚本。

wtzytmuj

wtzytmuj2#

我花了一些时间试图适应这一点,并发现这工作很好,为我的需要,其中纳入了一个单一的登录页面...显然,这不是完成的文章,但一个很好的基础,我可以开始。希望它是一些使用的人...

<body style="background: #555;">
    <!-- Modal -->
    <div class="modal-dialog" style="margin-top: 20%;">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
                <h4 class="modal-title">Modal title</h4>
            </div>
            <div class="modal-body">
                <p>One fine body…</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><!-- /.modal-content -->
    </div>
</body>
mwecs4sa

mwecs4sa3#

在Bootstrap 5中,只需创建一个带有选项的模态变量,并使用.show()运行它

var myModal = new bootstrap.Modal(document.getElementById('modal'), {keyboard: false, backdrop: 'static'});
myModal.show();

如果没有Jquery,就不能使用这个;

myModal.modal('show');
3vpjnl9f

3vpjnl9f4#

您可以使用页面加载函数

<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap-theme.min.css">
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>

<body onLoad="$('#my-modal').modal('show');">
    <div id="my-modal" 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">&times;</button>
                <h4 class="modal-title">Title</h4>
                </div>
                <div class="modal-body">
                    Hello World!
                </div>
            </div>
        </div> 
    </div>
</body>
5tmbdcev

5tmbdcev5#

在 Bootstrap 4上--
将show类添加到模态

<div class="modal fade show" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">

然后是CSS --

.modal {
    display:block;
  }
6mw9ycah

6mw9ycah6#

在bootstrap 5上,不要使用Jquery这里我给出答案;
首先我们分配一个id给按钮,选择按钮,然后当页面加载时自动点击这个按钮。

document.getElementById("btn-my").click();

和在CSS中;

#btn-my {
display: none;
}

就这样了

ctzwtxfj

ctzwtxfj7#

<div id="modal1" class="modal" data-show role="dialog">
  • 数据显示 * 帮助您

相关问题