美文网首页
Bootstrap modal使用及点击外部不消失的解决方法

Bootstrap modal使用及点击外部不消失的解决方法

作者: iaiayao | 来源:发表于2019-12-10 11:52 被阅读0次

    1.代码:

    <input id="btntext" type="button" value="添加文本组件" data-toggle="modal" data-target="#myModal" href="../SysManage/ZuJianManage.aspx"/> 
    <!-- Modal -->
    <div class="modal hide fade" id="myModal" tabindex="-1" role="dialog"> 
    <div class="modal-header"><button class="close" type="button" data-dismiss="modal">×</button> 
    <h3 id="myModalLabel">Modal header</h3> 
    </div> 
    <div class="modal-body"></div> 
    </div>
    

    当然你也可以用js来控制。
    如下代码:

    显示:  $('#myModal').modal('show');
    
    隐藏:  $('#myModal').modal('hide');
    
    开关:  $('#myModal').modal('toogle');
    
    事件:  $('#myModal').on('hidden', function () {// do something…});
    

    注意:我这边用到了href属性,这是让modal去 remote一个url。当然 ,你可以把你要的内容,直接写在modal-body里面。
    认真看modal的div结构,你就会明白,modal-body是代表内容,modal-header是头部,那么如果要在底部加两个按钮,那么就得用下面的代码了。

    <div class="modal-footer"> 
    <a href="#" class="btn">关闭</a> 
    <a href="#" class="btn btn-primary">保存</a> 
    </div>
    

    注意:如果要给modal设置宽度,那必须得加上布局。就是把modal放在下面的代码块中,并且设置modal的宽度。style="width:500px".对了,你还不可以用span样式直接放到class里面。

    <div  class="container"></div>
    

    如果要使弹出框点击外部不消失,在触发模态框的组件上添加以下属性 data-backdrop="static"

    <div class="modal hide fade" id="myModal" tabindex="-1" role="dialog"
    <span style="font-family: arial, 宋体, sans-serif, tahoma, 'Microsoft YaHei'; font-size: 14px; line-height: 24px;">
    <span style="color:#ff6666;">data-backdrop="static"</span>
    </span>> 
    </div> 
    

    相关文章

      网友评论

          本文标题:Bootstrap modal使用及点击外部不消失的解决方法

          本文链接:https://www.haomeiwen.com/subject/cbawgctx.html