我有一个 asp.webforms 应用程序,在 ai 页面上有一个带有进度条和 iframe 的隐藏 div。对于 iframe,我尝试从同一域上的另一个应用程序加载表单。
<div id="pagePreview" style="display: none;">
<div class="progressBarWrapper" id="waitDialog" style="opacity:1;filter:alpha(opacity=100);display:none;">
<div class="progressBarDetail" style="margin-top:25%;">
<asp:Image ID="imgLoading" runat="server" ImageUrl="~/Images/wait.gif" />
</div>
</div>
<iframe id="previewContent" onreadystatechange="iframeLoaded(this);"></iframe>
</div>
在单击事件上,我调用一个函数以在 jqueryUI 对话框中显示此 div,并且我希望显示进度条,直到未加载 Iframe 中的页面。
var isClickedForDialog = false;
function iframeLoaded(args) {
if (args.readyState == "complete" && isClickedForDialog) {
var pagePreview = $('#pagePreview'); // dialog
var waitDialog = $('#waitDialog'); // progress
waitDialog.hide();
isClickedForDialog = false;
}
}
function showModalWindow(url, hideCloseButton) {
isClickedForDialog = true;
var previewContent = $('#previewContent'); // Iframe
var pagePreview = $('#pagePreview'); // dialog
var waitDialog = $('#waitDialog'); // progresss
waitDialog.show();
previewContent.attr('src', url);
pagePreview.dialog(
{
draggable: false,
resizable: false,
height: 764,
width: 1020,
modal: true,
close: function (event, ui) {
previewContent.attr('src', '');
},
open: function (event, ui) {
if (hideCloseButton) {
$(this).parent().children().children('.ui-dialog-titlebar-close').hide();
}
}
});
}
在 IE 中一切正常。显示对话框和进度条,当在 iframe 中加载 URL 时,进度条消失,我在 IFrame 中只看到网络表单。
但在 FireFox 和 Chrome 中,这不起作用。
浏览器会忽略 onreadystatechange 事件。我尝试按以下方式处理事件:
$('#previewContent').bind('onreadystatechange', iframeLoaded, false);
$('#previewContent').on('onreadystatechange', iframeLoaded);
但没有成功。
知道如何解决这个问题吗?谢谢