Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Bootstrap Tour 在模式上显示帮助步骤。我的问题是,当模式关闭或关闭(通过单击模式外部)时,游览弹出窗口会徘徊并且没有任何按钮起作用(结束游览,上一个,下一个)。
模式关闭时如何退出游览?
使用 Bootstrap 3 模态时,您可以将 js 绑定到取消/退出事件,如下所示:
$('#modal').on('hidden.bs.modal', function () { tour.exit(); });
如果在模态之前有任何步骤,您也可以跳到上一个游览步骤。