gpt4 book ai didi

javascript - 通过 jquery 触发 Bootstrap 模式

转载 作者:搜寻专家 更新时间:2023-11-01 05:00:34 25 4
gpt4 key购买 nike

有问题。我正在尝试通过 jquery 触发 Bootstrap 模式,但它不起作用。我尝试了各种方法:方法一:

$(document).ready(function(){
$('#btn').click(function(){
$('#server_msg_modal').modal('show');
});
});

方法二:

$(document).ready(function(){
$('#btn').click(function(){
$('#server_msg_modal').modal('show');
});
});

方法三:

$('#server_msg_modal').modal({
show: 'true'
});

没有任何效果...请帮助我。

最佳答案

将点击处理程序添加到按钮和打开模态窗口的 jQuery 函数应该都有效。请参见下面的示例。我只能建议您查看 Chrome 的 DevTools,看看您的控制台中是否有任何 JavaScript 错误。

$(document).ready(function(){
$('#btn').click(function(){
$('#server_msg_modal').modal('show');
});
});
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet" />
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>

<div class="btn btn-danger" href="#server_msg_modal" data-toggle="modal">using data attribute</div>

<div class="btn btn-danger" id="btn">using jQuery click handler</div>


<div class="modal fade" id="server_msg_modal">
<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">Modal title</h4>
</div>
<div class="modal-body">
<p>Modal body</p>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->

关于javascript - 通过 jquery 触发 Bootstrap 模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28250009/

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