<input type= "button" value="Print" onclick="return PrintReport()" class="lbutton"/>
<iframe frameborder="0" height="768px" width="95%" id="loader" src="" name="loader"/>
function PrintReport()
{
document.getElementById('loader').contentWindow.document.execCommand('Print',false,null);
return false;
}
包含 aspx 页面的 iframe 名称加载器(html 表格报告)
单击按钮打印成功,但是当我以 pdf 格式预览时。
然后html 报告错过了它们的边框颜色和背景颜色。
我检查了 ie 8 中的设置允许背景颜色和图像。
打印后如何获得表格边框颜色和背景颜色。