如何在ie6中使用javascript在iframe中打印pdf?

时间:2011-08-20 06:59:21

标签: javascript

我在iframe的aspx页面中显示了一个pdf。我正在使用IE6浏览器。我使用以下html和javascript代码。

<iframe id = "frame_singleCheque" src = "../pdf/SingleCheque.pdf" runat = "server" style ="height:400px; width: 750px; overflow:scroll;" />


function printDoc()
{
      window.frames['ctl00_contPlcHdrMasterHolder_frame_singleCheque'].focus();
      window.frames['ctl00_contPlcHdrMasterHolder_frame_singleCheque'].print();
}

<input type="button" id = "btnCPrint" value = "Print" onclick="javascript:printDoc()" />

如果按下打印按钮,则显示打印对话框。但每当我按下打印按钮时,它都不会打印任何东西。它不会将事件打印为空白页。我该如何打印?

1 个答案:

答案 0 :(得分:0)

试试这个:

function printDoc() {
   document.getElementById('frame_singleCheque').focus(); 
   document.getElementById('frame_singleCheque').contentWindow.print();
}

编辑:也请查看this