我有一个引导程序模式对话框,我想最初显示它,然后当用户单击该页面时,它就会消失。我有以下内容:
$(function(){ $('#modal').modal(toggle) }); <divclass="modal"id='modal'> <divclass="modal-header"> <buttontype="button"class="close"data-dismiss="modal"aria-hidden="true">×</button> <h3id="myModalLabel">Error:</h3> </div> <divclass="modal-body"> <p>Pleasecorrectthefollowingerrors:</p> </div> </div> </div>
模态框最初显示,但在模态框外单击时不会关闭。此外,内容区域没有变灰。我怎样才能让模式最初显示,然后在用户点击区域外后关闭?我怎样才能让背景像演示中那样变灰?