bootstrap用jquery控制模态框
2021/9/4 23:06:16
本文主要是介绍bootstrap用jquery控制模态框,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
bootstrap用jquery控制模态框
转载至bootstrap js控制模态框,这样就能根据逻辑条件控制modal框的打开了。
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Bootstrap 实例 - 模态框(Modal)插件</title> <link rel="stylesheet" href="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="http://cdn.static.runoob.com/libs/jquery/2.1.1/jquery.min.js"></script> <script src="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/js/bootstrap.min.js"></script> </head> <body> <h2>创建模态框(Modal)</h2> <!-- 按钮触发模态框 --> <a href="javascript:void(-1);" onclick="show_modal();"> 开始演示模态框</a> </button> <!-- 模态框(Modal) --> <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true"> × </button> <h4 class="modal-title" id="myModalLabel"> 模态框(Modal)标题 </h4> </div> <div class="modal-body"> <div class="input-group"> <div class="form-group"> <label>name:</label> <input name="name" type="text" value=""> </div> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">关闭 </button> <button type="button" class="btn btn-primary" id="id_ad_search"> 提交更改 </button> </div> </div><!-- /.modal-content --> </div><!-- /.modal --> </div> <script> function show_modal() { $('#myModal').modal('show'); } $(function () { $('#id_ad_search').click(function () { var name = $('#id_name').val(); $.ajax({ url:'/test', data:{name:name}, complete:function () { $('#myModal').modal('hide'); } }) }); }); </script> </body> </html>
这篇关于bootstrap用jquery控制模态框的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-03-06jquery对css样式(jquery中的css方法)-icode9专业技术文章分享
- 2023-05-27JQuery的认识和安装
- 2023-01-06JQuery应用技巧:如何定义 HTML 模板并使用 JQuery 进行加载-icode9专业技术文章分享
- 2022-09-29复习-jQuery
- 2022-09-04Python3项目初始化10-->前端基础jquery、ajax,sweetalert--更新用户改造
- 2022-08-30day 27 jquery
- 2022-08-29jQuery筛选器,bootstrap
- 2022-08-20JQuery事件绑定
- 2022-08-20JQuery案例
- 2022-08-07关于jQuery的学习