首页前端开发其他前端知识Bootstrap模态框如何使用,使用步骤是怎样

Bootstrap模态框如何使用,使用步骤是怎样

时间2024-03-28 00:10:04发布访客分类其他前端知识浏览1524
导读:这篇文章给大家介绍了“Bootstrap模态框如何使用,使用步骤是怎样”的相关知识,讲解详细,步骤过程清晰,对大家进一步学习和理解“Bootstrap模态框如何使用,使用步骤是怎样”有一定的帮助,希望大家阅读完这篇文章能有所收获。下面就请大...
这篇文章给大家介绍了“Bootstrap模态框如何使用,使用步骤是怎样”的相关知识,讲解详细,步骤过程清晰,对大家进一步学习和理解“Bootstrap模态框如何使用,使用步骤是怎样”有一定的帮助,希望大家阅读完这篇文章能有所收获。下面就请大家跟着小编的思路一起来学习一下吧。

bootstrap模态框的用法:1、通过data属性,同时设置“data-target="#myModal"”选择器内容;2、通过js,直接用代码“$(’#myModal’).modal(options)”等等。

本文操作环境:Windows7系统、bootstrap3、Dell G3电脑。

bootstrap的模态框

如果只想单独使用模态框功能,可以单独引入modal.js,和bootstrap的css,在bootstrap的包中,可引入bootstrap.js。

用法

  1. 通过data属性,比如设置某个butto的data-toggle=’“modal”,同时设置 data-target="#myModal" 选择器内容,

  2. 通过js直接用代码 $(’#myModal’).modal(options)

  3. 模态框主要为三部分,model-head,modeal-body,model-footer,主要内容在body中显示,class="close"为一个关闭模态框样式。

  4. 几个常用的方法 $(’#identifier’).modal(‘toggle’) 切换模态框状态

    $(’#identifier’).modal(‘show’) 显示模态框

    $(’#identifier’).modal(‘hide’) 隐藏模态框

事件 作用 用法
show.bs.modal 在调用 show 方法后触发。 $(’#myModal’).on(‘show.bs.modal’,function () { alert(“显示模态框”); } );
shown.bs.modal 在调用 show 方法后触发。 $(’#myModal’).on(‘shown.bs.modal’, function () { alert(“完全显示模态框”); } );
hide.bs.modal 在调用 hide 方法后触发。 $(’#myModal’).on(‘hide.bs.modal’, function () { alert(“隐藏模态框”); } );
hidden.bs.modal 在调用 hide 方法后触发。 $(’#myModal’).on(‘hidden.bs.modal’, function () { alert(“完全隐藏模态框”); } );

使用步骤两步

1、按顺序引入以下三个文件(推荐:《bootstrap教程》)

link rel="stylesheet" href="../css/bootstrap.min.css">
    
script sype="text/JavaScript" src="./jquery.min.js">
    /script>
    
script sype="text/JavaScript" src="../js/bootstrap.min.js">
    /script>
    

2、在页面中copy下面的代码

button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
    开始演示模态框/button>
    
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">
    &
    times;
    /button>
    
                h4 class="modal-title text-center" id="myModalLabel">
    标题是什么/h4>
    
            /div>
    
            div class="modal-body">
    
                写你HTML文本
            /div>
    
            div class="modal-footer">
    
                button type="button" class="btn btn-default" data-dismiss="modal">
    取消/button>
    
                button type="button" class="btn btn-primary">
    保存添加/button>
    
            /div>
    
        /div>
    !-- /.modal-content -->
    
    /div>
    !-- /.modal -->
    
/div>
    

简单吧,模态框就是需要一个触发,在触发模态框的html元素加入以下属性data-toggle="modal" data-target="#myModal"

观察以下就会发现 这个data-target="#myModal"中的myModal就是模态框所在div的id div class="modal fade" id="myModal".............>


以上就是关于“Bootstrap模态框如何使用,使用步骤是怎样”的介绍了,感谢各位的阅读,希望文本对大家有所帮助。如果想要了解更多知识,欢迎关注网络,小编每天都会为大家更新不同的知识。

声明:本文内容由网友自发贡献,本站不承担相应法律责任。对本内容有异议或投诉,请联系2913721942#qq.com核实处理,我们将尽快回复您,谢谢合作!


若转载请注明出处: Bootstrap模态框如何使用,使用步骤是怎样
本文地址: https://pptw.com/jishu/654570.html
go语言开源么,如何认识go语言 Bootstrap的grid如何使用,有哪些要注意的

游客 回复需填写必要信息