小编典典

是否可以取消使用隐藏iframe的文件上传?

ajax

是否可以取消使用隐藏iframe的文件上传?

我尝试将iframe的源设置为空字符串,但上传并未中断。


阅读 216

收藏
2020-07-26

共1个答案

小编典典

iframe是承载表单过帐的传输渠道,因此Atanas是正确的,您必须停止iframe内部的传输。

这是一种取决于浏览器的方法:

if (iframeObj.contentWindow.document.execCommand)
    { // IE browsers
        iframeObj.contentWindow.document.execCommand('Stop');
    }
else
    { // other browsers
        iframeObj.contentWindow.stop();
    }
// notify user upload was cancelled, remove spinner images, etc
2020-07-26