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="登 路" 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;"/> <input type="button" id="b2" value="取 消" 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"