使用后页面溢出不起作用
 $('body').modalmanager('loading');

 $('body').modalmanager('removeLoading');

我该如何解决?

最佳答案

要关闭模式管理器加载窗口,请尝试仅使用$('body').modalmanager('loading');而不是'removeLoading'。 “加载”本身用于切换加载状态。 (在此处阅读文档-https://github.com/jschr/bootstrap-modal

还要确保在引导js之后包含了modalmanager js文件。

此处已解决类似问题(没有任何特定解决方案)-https://github.com/jschr/bootstrap-modal/issues/97

09-16 18:12