通过ifrmae异步下载文档

Posted 欧欧欧锋_

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过ifrmae异步下载文档相关的知识,希望对你有一定的参考价值。

//通过ifrmae异步下载文档
function iframeGetFile(opts) {
    var defaultOpts = {
        filePath: ‘‘,
        onload: function (e) { }
    }, iframeFile;
    $.extend(defaultOpts, opts);
    iframeFile = document.createElement("iframe");
    iframeFile.onload = function (e) {
        defaultOpts.onload.call(this, e);
        $(iframeFile).remove();
    }
    iframeFile.src = defaultOpts.filePath;
    iframeFile.style.cssText = "display:none;";
    document.body.appendChild(iframeFile);
},

调用:

$.iframeGetFile({ filePath: requestUrl + "?" + strOptions });

以上是关于通过ifrmae异步下载文档的主要内容,如果未能解决你的问题,请参考以下文章