简体   繁体   English

当引导程序模态打开后应如何回到正常位置,如何防止背景滚动

[英]How to prevent background scroll when bootstrap modal is open after that it should come to normal position

I am using this code for on load popup when popup opens the background should be not scrollable. 当弹出窗口打开时,我正在将此代码用于加载弹出窗口,背景应不可滚动。 Please help. 请帮忙。

<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal"  >Open modal /button>
    <div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel">      
    <div class="modal-dialog" role="document" style="width:340px;float:right;margin: 48px;">
    <div class="triangle"></div>
    <div class="modal-content">
    <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
    <h2 class="modal-title" id="exampleModalLabel">Select City</h2>
    </div>
    <div class="modal-body">
    <form>
    <div class="form-group">
    <div class="col-md-3"> <label for="recipient-name" class="control-label">Recipient:</label></div>
    <div class="col-md-9"><input type="text" style="border:1px solid gray;"></div>                
    </div>             
    </form>
    </div>
    <div class="modal-footer">
    <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
    <button type="button" class="btn btn-primary">Send message</button>
    </div>
    </div>
    </div>
    </div>
    <script>
    $('#exampleModal').modal({
    backdrop: 'static',
    keyboard: true
    })

    </script>

I used as provided code and saw in codepan, there is no scroll Please could you more elaborate your problem or provide all code. 我使用了提供的代码,并在“代码盘”中看到了,没有滚动条,请您进一步说明问题或提供所有代码。 codepen. Codepen。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM