我嘗試使用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();
但他給我空白頁,我檢查了網址,它確實是正確的。 我能做什麼? 謝謝!
這裏是一個答案類似的問題,也許這可以幫助 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
在嘗試打印之前,PDF是否成功加載到「
看到這個答案http://stackoverflow.com/questions/16239513/print-pdf-directly-from-javascript –