gpt4 book ai didi

twitter-bootstrap - 页面加载时的 Bootstrap 模式打开

转载 作者:行者123 更新时间:2023-12-03 14:26:48 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Launch Bootstrap Modal on Page Load

(20 个回答)


6年前关闭。




我有一个带有 Bootstrap 模式的页面(手册:http://getbootstrap.com/javascript/#modals)。

我想在页面加载时打开这个模式。然而,这并没有发生。

<!-- Modal -->
<div class="modal fade" id="memberModal" tabindex="-1" role="dialog" aria-labelledby="memberModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title" id="memberModalLabel">Thank you for signing in!</h4>
</div>
<div class="modal-body">
<p>However the account provided is not known.<BR>
If you just got invited to the group, please wait for a day to have the database synchronized.</p>

<p>You will now be shown the Demo site.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>

<script type="text/javascript">
<!--
$('#memberModal').modal('show');
//-->
</script>

现在,如果我在代码中添加一个按钮。当我按下按钮时,模式正在打开。
<button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#memberModal">
Launch modal
</button>

我尝试了几件事,但我无法让它在页面加载时自动打开模式。
我在 html 头中调用了 bootstrap 的 js 和 css。
<!-- Bootstrap - Latest compiled and minified CSS -->
<link rel="stylesheet" type='text/css' href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">

<!-- Bootstrap - Latest compiled and minified JavaScript -->
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>

我究竟做错了什么?

最佳答案

使用 document.ready()您的电话周围的事件。

$(document).ready(function () {

$('#memberModal').modal('show');

});

jsFiddle 更新 - http://jsfiddle.net/uvnggL8w/1/

关于twitter-bootstrap - 页面加载时的 Bootstrap 模式打开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28068119/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com