时间:2021-05-28
使用模态框的弹窗组件需要三层 div 容器元素
分别为 modal(模态声明层) dialog(窗口声明层) content(内容层)
在内容层里面,还有三层,分别为 header(头部)、 body(主体)、 footer(注脚)
一个简单的对话框登陆/注册例子
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title> <link rel="stylesheet" href="./css/bootstrap.min.css"> <script src="./js/jquery.min.js"></script> <script src="./js/bootstrap.min.js"></script> <style> .modal-dialog { width: 20%; } .modal-footer, .modal-header { text-align: center; } input { width: 80%; } </style></head><body> <!-- LOGIN MODULE --> <div id="loginModal" class="modal fade" tabindex="-1"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal"> <span>×</span> </button> <h4 class="modal-title">会员登录</h4> </div> <div class="modal-body"> <label for="log_uname"> <span>帐号:</span> <input id="log_uname" name="log_uname" type="text" placeholder="input your account"> </label> <br> <label for="log_passwd"> <span>密码:</span> <input id="log_passwd" name="log_passwd" type="password" placeholder="input your password"> </label> </div> <div class="modal-footer"> <button type="button" class="btn btn-primary">登录</button> <button type="button" class="btn btn-warning" data-dismiss="modal">退出</button> </div> </div> </div> </div> <!-- LOGIN MODULE --> <div id="registerModal" class="modal fade" tabindex="-1"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal"> <span>×</span> </button> <h4 class="modal-title">注册会员</h4> </div> <div class="modal-body"> <label for="uname"> <span>帐号:</span> <input id="reg_uname" name="reg_uname" type="text" placeholder="input your account"> </label> <br> <label for="reg_passwd"> <span>密码:</span> <input id="reg_passwd" name="reg_passwd" type="password" placeholder="input your password"> </label> <label for="reg_confirm_passwd"> <span>确认:</span> <input id="reg_confirm_passwd" name="reg_confirm_passwd" type="password" placeholder="confirm your password"> </label> </div> <div class="modal-footer"> <button type="button" class="btn btn-primary">注册</button> <button type="button" class="btn btn-warning" data-dismiss="modal">退出</button> </div> </div> </div> </div> <button class="btn btn-primary" data-toggle="modal" data-target="#loginModal">登陆</button> <button class="btn btn-warning" data-toggle="modal" data-target="#registerModal">注册</button></body></html>对话框其他知识
jQuery方式声明对话框
$('#myModal').modal({ show : true, backdrop : false, keyboard : false, remote : 'index.html',});jQuery方式显示对话框
$('#myBtn').on('click', function () { $('#myModal').modal('show');});对话框的事件
show.bs.modal ==> 在show方法调用时立即触发
shown.bs.modal ==> 在模态框完全显示出来并且CSS动画完成之后触发
hide.bs.modal ==> 在hide方法调用时 还未关闭隐藏时触发
hidden.bs.modal ==> 在模态框完全隐藏之后并且CSS动画完成之后触发
$('#myModal').on('show.bs.modal', function () { alert('show !');});边缘弹出框
<button class="btn btn-lg btn-danger" type="button" data-toggle="popover" title="弹出框" data-content="这是一个弹出框">点击弹出/隐藏弹出框</button><script> $('button').popover();</script>其他方法
$('button').popover('show'); //显示$('button').popover('hide'); //隐藏$('button').popover('toggle'); //反转显示和隐藏$('button').popover('destroy'); //隐藏并销毁事件
show.bs.popover ==> 在调用show方法时触发
shown.bs.popover ==> 在显示整个弹窗时触发
hide.bs.popover ===> 在调用hide方法时触发
hidden.bs.popover ==> 在完全关闭整个弹出时触发
如果大家还想深入学习,可以点击这里进行学习,再为大家附两个精彩的专题:Bootstrap学习教程 Bootstrap实战教程
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
1.Bootstrap模态对话框和简单使用x对话框标题对话框主体取消确定可以使用按钮或链接直接调用模态对话框,这是简单的用法:打开对话框打开对话框2.使用rem
在使用bootstrap模态对话框时需要在页面写对话框html,如果一个页面有许多地方需要对话框,那意味着需要写多个,感觉很麻烦,平时不太习惯bootstrap
Android中Popwindow弹出菜单的两种方法实例1.popWindow就是对话框的一种方式!此文讲解的android中对话框的一种使用方式,它叫popW
1.覆盖层调整在bootstrap的对话框中,当其中的输入项使用了自动完成控件,则其中下拉框中的内容就会被bootstrap对话框的覆盖层遮盖。为了能够使后面的
本文实例讲述了Bootstrap模态对话框用法。分享给大家供大家参考,具体如下:环境:bootstrap-3.3.5,jquery-3.0.0代码:/boots