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


