


In this lesson we will mainly learn about the modal box plug-in in Bootstrap, which is a very common pop-up function plug-in for interactive websites.
1. Basic usage
Using a modal box pop-up component requires three layers of div container elements, namely modal (modal declaration layer),
dialog (window declaration layer), content (content layer). Within the content layer, there are three layers, namely header, body, and footer.
//Basic example
<!-- 模态声明,show 表示显示 --> <div class="modal show" 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 id="会员登录">会员登录</h4> </div> <!-- 主体 --> <div class="modal-body"> <p> 暂时无法登录会员 </p> </div> <!-- 注脚 --> <div class="modal-footer"> <button type="button" class="btn btn-default"> 注册 </button> <button type="button" class="btn btn-primary"> 登录 </button> </div> </div> </div> </div>
If you want the modal box to hide automatically and then pop up the window by clicking the button, you need to do the following.
//模态框去掉 show,增加一个 id <div class="modal" id="myModal"> //点击触发模态框显示 <button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal"> 点击弹窗 </button> //弹窗的大小有三种,默认情况下是正常,还有 lg(大)和 sm(小) <div class="modal-dialog modal-lg"> <div class="modal-dialog sm-lg"> //可设置淡入淡出效果 <div class="modal fade" id="myModal"> //在主体部分使用栅格系统中的流体 <!-- 主体 --> <div class="modal-body"> <div class="container-fluid"> <div class="row"> <div class="col-md-4"> 1 </div> <div class="col-md-4"> 1 </div> <div class="col-md-4"> 1 </div> </div> </div> </div>
2. Instructions for use
After the basic usage introduction, let’s take a look at the various important uses of the plug-in. All plug-ins are based on JavaScript/jQuery. Then, there are four elements: usage, parameters, methods and events.
1. Usage
The first type: You can pass the data attribute
//data-toggle data-toggle="modal" data-target="#myModal"
data-toggle indicates trigger type
data-target represents the triggered node
If instead of using
Replace. Of course, we recommend using data-target. In addition to the two declared attributes data-toggle and data-target, there are some available options.
2. Parameters
The effect can be controlled by setting the data-* attribute declaration on the HTML element.
//空白背景且点击不关闭 data-backdrop="false" //按下 esc 不关闭 data-keyboard="false" //初始化隐藏,如果是按钮点击触发,第一次点击则无法显示,第二次显示。 data-show="false" //加载一次 index.html 到容器内 href="index.html"
Of course, it can also be set directly in JavaScript.
//通过 jQuery 方式声明 $('#myModal').modal({ show : true, backdrop : false, keyboard : false, remote : 'index.html', });
3. Method
If the pop-up window is not displayed by default, then how can the pop-up window be displayed by clicking before and after?
//点击显示弹窗 $('#btn').on('click', function() { $('#myModal').modal('show'); });
4. Event
The modal box supports 4 types of time, corresponding to before popping up, after popping up, before closing and after closing.
$('#myModal').on('show.bs.modal', function() { alert('在 show 方法调用时立即触发!'); }); $('#myModal').on('shown.bs.modal', function() { alert('在模态框显示完毕后触发!'); }); $('#myModal').on('hide.bs.modal', function() { alert('在 hide 方法调用时立即触发!'); }); $('#myModal').on('hiden.bs.modal', function() { alert('在模态框显示完毕后触发!'); }); $('#myModal').on('loaded.bs.modal', function() { alert('远程数据加载完毕后触发!'); });
The above is the entire content of this article, I hope it will be helpful to everyone’s study.

一个好的网站,不能只看外表,网站后台同样很重要。本篇文章给大家分享10款好看又实用的Bootstrap后台管理系统模板,可以帮助大家快速建立强大有美观的网站后台,欢迎下载使用!如果想要获取更多后端模板,请关注php中文网后端模板栏目!

bootstrap与jquery的关系是:bootstrap是基于jquery结合了其他技术的前端框架。bootstrap用于快速开发Web应用程序和网站,jquery是一个兼容多浏览器的javascript库,bootstrap是基于HTML、CSS、JAVASCRIPT的。

好看又实用的Bootstrap电商源码模板可以提高建站效率,下面本文给大家分享7款实用响应式Bootstrap电商源码,均可免费下载,欢迎大家使用!更多电商源码模板,请关注php中文网电商源码栏目!

好看又实用的企业公司网站模板可以提高您的建站效率,下面PHP中文网为大家分享8款Bootstrap企业公司网站模板,均可免费下载,欢迎大家使用!更多企业站源码模板,请关注php中文网企业站源码栏目!

在bootstrap中,sm是“小”的意思,是small的缩写;sm常用于表示栅格类“.col-sm-*”,是小屏幕设备类的意思,表示显示大小大于等于768px并且小于992px的屏幕设备,类似平板设备。

bootstrap modal关闭的方法:1、连接好bootstrap的插件;2、给按钮绑定模态框事件;3、通过“ $('#myModal').modal('hide');”方法手动关闭模态框即可。

bootstrap默认字体大小是“14px”;Bootstrap是一个基于HTML、CSS、JavaScript的开源框架,用于快速构建基于PC端和移动端设备的响应式web页面,并且默认的行高为“20px”,p元素行高为“10px”。

bootstrap是免费的;bootstrap是美国Twitter公司的设计师“Mark Otto”和“Jacob Thornton”合作基于HTML、CSS、JavaScript 开发的简洁、直观、强悍的前端开发框架,开发完成后在2011年8月就在GitHub上发布了,并且开源免费。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Dreamweaver CS6
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool
