bootstrap弹窗、弹出层、modal

 bootstrap弹窗、弹出层、modal

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

<div class="modal fade" id="myModal2" style="background-color: #D5D5D5;font-size: .4cm;width: 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="width: 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="width: 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="width: 166px;height:30px;border:1px solid transparent;border-radius: 8px;margin-left: 10px;"/>
                </div>
           </div>
          <div style="clear: both;"></div>
             <div style="width: 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;width: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;width: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');

猜你喜欢

转载自www.cnblogs.com/qq376324789/p/10718287.html