2016-02-11 204 views
3

我嘗試使用javaScript打印pdf文件。 我從服務器獲取文件的URL。JS打印pdf文件

var iframe = document.createElement('iframe'); 
       document.body.appendChild(iframe); 

       iframe.style.display = 'none'; 
       iframe.src = urlBaseImage + 'Report//' + result; 
       iframe.focus(); 
       iframe.contentWindow.print(); 

但他給我空白頁,我檢查了網址,它確實是正確的。 我能做什麼? 謝謝!

+0

這裏是一個答案類似的問題,也許這可以幫助 http://stackoverflow.com/questions/472951/how-do-i-print從JavaScript中的Safari瀏覽器或Chrome瀏覽器 - 一個iframe從這裏http://stackoverflow.com/questions/18888131/print-pdf-file-in-iframe-using-javascript-getting-one-page-only – kolkhi

+0

在嘗試打印之前,PDF是否成功加載到「