How to print PDF from IFRAME if src = pdf?

前端 未结 5 993
花落未央
花落未央 2021-01-03 20:22

I have an iframe which needs point directly to a PDF file (not a page with a PDF):

';
    }

    $(document.body).append(pdf);

    setTimeout(function(){
        window.frames["print_frame"].focus();
        window.frames["print_frame"].print();
    },2000);
});

...cheers.

提交回复
热议问题