小编典典

关闭引导模式

all

我有一个我想最初显示的引导模式对话框,然后当用户点击页面时,它就会消失。我有以下内容:

$(function () {
   $('#modal').modal(toggle)
});

 <div class="modal" id='modal'>
     <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">脳</button>
        <h3 id="myModalLabel">Error:</h3>
        </div>
        <div class="modal-body">
        <p>Please correct the following errors:</p>
        </div>
     </div>
 </div>

模态框最初显示,但在模态框外单击时不会关闭。此外,内容区域没有变灰。我怎样才能让模式最初显示,然后在用户点击区域外后关闭?我怎样才能让背景像演示中那样变灰?


阅读 152

收藏
2022-03-11

共1个答案

小编典典

modal('toggle')代替modal(toggle)

$(function () {
   $('#modal').modal('toggle');
});
2022-03-11