如何在浏览器请求部分内容范围请求时检测何时在iframe中加载pdf?

时间:2015-02-25 00:42:21

标签: javascript jquery html pdf iframe

我想检测pdf何时加载,但是当浏览器在Chrome 40中请求pdfs部分内容范围请求时,jQuery .load()事件永远不会触发。

我想在pdf加载后触发浏览器print()函数。如果pdf足够小,浏览器不会请求范围,但对于较大的pdf,我如何检测pdf加载?

function download(src){

    var iframe;

    function check() {
        console.log('checking..');
        if(iframe.contentWindow && iframe.contentWindow.document && iframe.contentWindow.document.body && iframe.contentWindow.document.body.children && iframe.contentWindow.document.body.children.length > 0){
            console.log('embed element exists... how do I tell when it\'s loaded?');
        } else {
            timeout = setTimeout(check, 150);
        }
    }

    var timeout = setTimeout(check, 150);
    iframe = $('<iframe type="application/pdf" src="'+src+'"></iframe>').appendTo(document.body).load(function() {
        console.log('iframe is loaded. This never happens when there are range requests');
    }).get(0);
}
$(document).ready(function(){
    download('test.pdf');
});

可以在http://stringham.me/pdf.html

看到一个例子

1 个答案:

答案 0 :(得分:0)

这听起来像是一个愚蠢的答案,但您是否尝试过onload html属性?