zoukankan      html  css  js  c++  java
  • bootstrap弹窗、弹出层、modal

     bootstrap弹窗、弹出层、modal

    引入bootstrap的js文件    如下div代码

    <div class="modal fade" id="myModal2" style="background-color: #D5D5D5;font-size: .4cm; 350px;height: 300px;" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
        <div class="modal-dialog" >
            <div class="modal-content">
                 <div style="margin-top: 20px;margin-left: 10px;">设置管理密码</div>
               <div>
                    <div style="margin-left: 22px;margin-top: 30px;">
                                                  输入旧密码<input type="password" id='pswds' placeholder="请输入旧密码" autocomplete="off" style=" 166px;height:30px;border:1px solid transparent;border-radius: 8px;margin-left: 10px;"/>
                    </div>
                    <div style="margin-left: 22px;margin-top: 10px;">
                                                   输入新密码<input type="password" id='pswds1' placeholder="请输入密码" autocomplete="off" style=" 166px;height:30px;border:1px solid transparent;border-radius: 8px;margin-left: 10px;"/>
                    </div>
                    <div style="margin-left: 10px;margin-top: 10px;">
                                                   再次输入密码<input type="password" id='pswds2' placeholder="请再次输入密码" autocomplete="off" style=" 166px;height:30px;border:1px solid transparent;border-radius: 8px;margin-left: 10px;"/>
                    </div>
               </div>
              <div style="clear: both;"></div>
                 <div style=" 100%;margin-top: 20px;" align="center">
                     <input type="button" id="b1" value="登&nbsp;&nbsp;路" onmouseout="seout('b1');"  onmouseover="seover('b1');" onclick="save2();" style="background-color:#1C86EE;88px;height: 38px;color: white;padding-left: 0px;border: 1px solid transparent;outline: none;border-radius: 6px;"/>
                     &nbsp;&nbsp;&nbsp;&nbsp;
                     <input type="button" id="b2" value="取&nbsp;&nbsp;消" onmouseout="seout('b2');"  onmouseover="seover('b2');" onclick="myModalClo2();" style="background-color:#1C86EE;88px;height: 38px;color: white;padding-left: 0px;border: 1px solid transparent;outline: none;border-radius: 6px;"/>
                 </div>
            </div><!-- /.modal-content -->
        </div><!-- /.modal -->
    </div>
      $('#myModal3').modal('show');
       $('#myModal3').modal('hide');

     开始关闭触发事件

            $('#myModal').on('hide.bs.modal', function () {
                  // 执行一些动作...
                  $("#myModal").css("pointer-events","none");
                })
                    
            $('#myModal').on('show.bs.modal', function () {
              // 执行一些动作...
                $("#myModal").css("pointer-events","auto");
            })

     防止点击其他地方关闭弹窗问题

    加上如下标签即可

    data-backdrop="static"
  • 相关阅读:
    安装Oracle 11g时遇到“【INS-13001】此环境不满足最低配置”的问题解决
    Oracle 11g安装过程
    关于.ipynb文件
    Mysql连接驱动与Java之间的版本不匹配问题(Mysql-connector-java与Java、Mysql版本对应关系)
    Markdown基础语法
    华为2019开发者大会内容小记
    Python开发:NumPy学习(一)ndarray数组
    POJ 1011 -- Sticks
    POJ 2362 -- Square
    POJ 3414 -- Pots
  • 原文地址:https://www.cnblogs.com/qq376324789/p/10718287.html
Copyright © 2011-2022 走看看