iframe是运送频道,正在载入表单,所以atanas是正确的,你必须停止iframe内的运输.
原文链接:https://www.f2er.com/ajax/159854.html这是一种依赖浏览器的方法:
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