有没有办法可以找到 iframe 中是否存在 http 错误状态?
我正在使用动态构建的 url 加载 iframe,并在加载时删除加载 gif。
$("#reportFrame").load(function () {
kendo.ui.progress($("#report-container"), false)
$('#btnReportRefresh').removeAttr('disabled').removeClass('k-state-disabled');
$(this).css('display', 'block');
});
所有这些都可以,但是如果此页面内出现错误,我想显示我自己的错误文本,而不是 iframe 中显示的内容。
这可能吗?
更新 请注意,iframe 将始终加载到不同的域中。