如何使此模式对话框在页面加载时打开?

问题描述 投票:0回答:2

我正在客户的网站上安装this modal dialog,几乎没有任何修改。

但是,在文档中找不到如何在页面加载时显示模式对话框的方法。我是jQuery的初学者,有时我可以修改一些看起来合乎逻辑的内容,有时则更难。

html jquery modal-dialog
2个回答
0
投票

http://github.com/kylefox/jquery-modal方法2:手动:

$(function() {
  $('#login-form').modal();
});

0
投票

您需要在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);
};

就是这样。

© www.soinside.com 2019 - 2024. All rights reserved.