我正在客户的网站上安装this modal dialog,几乎没有任何修改。
但是,在文档中找不到如何在页面加载时显示模式对话框的方法。我是jQuery的初学者,有时我可以修改一些看起来合乎逻辑的内容,有时则更难。
http://github.com/kylefox/jquery-modal方法2:手动:
$(function() {
$('#login-form').modal();
});
您需要在html上创建这样的div:
<div ng-include="'/Somepast/busyModal.html'" ng-show="isLoading"></div>
<div> after load</div>
然后在您创建的JavaScript中:
function init() {
$scope.isLoading = true;
SomeFunction().then(function (data) {
$scope.isLoading = false;
}, onError);
};
就是这样。