码迷,mamicode.com
首页 > 其他好文 > 详细

通过ifrmae异步下载文档

时间:2017-05-17 14:01:58      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:document   异步   log   pat   url   load   doc   call   append   

//通过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异步下载文档

标签:document   异步   log   pat   url   load   doc   call   append   

原文地址:http://www.cnblogs.com/oufeng/p/6866905.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!