PHP8.1.21版本已发布
vue8.1.21版本已发布
jquery8.1.21版本已发布

bootstrap 模态框用法

藏色散人
藏色散人 原创
2021-02-07 09:33:48 4975浏览

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、按顺序引入以下三个文件

<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" .............><p>    (推荐:《<a href="https://www.php.cn/bootstrap/" target="_blank">bootstrap教程</a>》)</p></div>

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。