Bootstrap是否有真正的模态窗口?

时间:2013-11-19 17:15:01

标签: twitter-bootstrap modal-dialog

Bootstrap是否有一个真实的模态窗口,类似于“alert()”,用户必须在浏览器中(而不仅仅是在选项卡或窗口中)进行响应才能进行任何更改?

2 个答案:

答案 0 :(得分:2)

此处为示例代码fiddle,只需尝试

即可

<强> HTML

<!-- Button trigger modal -->
<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
  Launch demo modal
</button>

<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
        <h4 class="modal-title" id="myModalLabel">Modal title</h4>
      </div>
      <div class="modal-body">
        ...
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Save changes</button>
      </div>
    </div><!-- /.modal-content -->
  </div><!-- /.modal-dialog -->
</div><!-- /.modal -->

<强>的jQuery

$('#myModal').modal({ backdrop: 'static', keyboard: true })

答案 1 :(得分:1)

不,它没有。 您可以将模态的backdropkeyboard属性设置为false,并且必须为您想要的问题/答案编写逻辑。

backdropkeyboard属性设置为false会阻止用户继续对页面进行任何更改,但不会阻止用户使用浏览器本身(例如输入新网址)在地址栏中,或单击历史记录按钮...)。