请让我知道我需要做什么才能使以下示例中的向导窗口https://github.com/amoffat/bootstrap-application-wizard不是模态的,而是在页面加载时自行加载。
任何帮助将不胜感激。
梅尔罗伊
请让我知道我需要做什么才能使以下示例中的向导窗口https://github.com/amoffat/bootstrap-application-wizard不是模态的,而是在页面加载时自行加载。
任何帮助将不胜感激。
梅尔罗伊
这不再相关,因为它已经完成
我知道这是一篇旧帖子,但解决方案在 bootstrap 3 分支中可用
https://github.com/amoffat/bootstrap-application-wizard/tree/bootstrap-3
这可以通过在向导构造函数中将 isModal 属性设置为 false 来启用。
var wizard = $('#satellite-wizard').wizard({
keyboard : false,
contentHeight : 400,
contentWidth : 700,
isModal:false
});
奇怪的是,在下载链接上随发行版提供的插件源中没有支持此功能的代码。但是,缩小版 (bootstrap-wizard.min.js) 包含该功能。
<script src="../src/bootstrap-wizard.min.js" type="text/javascript"></script>