打印按钮不打印图像,但打印文本文档

时间:2014-04-14 13:32:06

标签: javascript asp.net

我使用以下java脚本作为打印按钮。

    <script type="text/javascript">
        function printform()
    {
         var printContent = document.getElementById('<%= Panel1.ClientID %>');
         var windowUrl = 'about:blank';
         var uniqueName = new Date();
         var windowName = 'Print' + uniqueName.getTime();
         var printWindow = window.open(windowUrl, windowName, 'left=50000,top=50000,width=0,height=0');

         printWindow.document.write(printContent.innerHTML);
         printWindow.document.close();
         printWindow.focus();
         printWindow.print();
         printWindow.close();
    }
 </script>

上面的代码不打印图像而是打印文本文档。我该怎么做才能解决问题.Plz为我提供了解决方案。

1 个答案:

答案 0 :(得分:0)

如果您发现难以看到要在文档上打印的背景图像,请确保在IE中设置此选项,如果您使用IE。

enter image description here