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

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

最佳答案

iframe是承载表单过帐的传输 channel ,因此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

关于ajax - 是否可以取消使用隐藏iframe的文件上传?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5280855/

10-11 05:53