发布网友 发布时间:2022-04-24 05:43
共2个回答
热心网友 时间:2022-04-21 15:30
您好!很高兴为您答疑。
就目前实际了解的情况来看是不可以的。因为对于常见的如佳能、惠普等打印机的驱动来看,其页眉页脚的展示与否直接集成于打印预览对话框,而且其并不是通过js代码可以控制显隐的。
如果对我们的回答存在任何疑问,欢迎继续问询。
热心网友 时间:2022-04-21 16:48
代码如下:
<html>
<head></head>
<style type="text/css" media="screen">
@media print{
.print
{display:block;}
.notPrint {display:none;}
}
</style>
<script language="javascript">
function preview()
{
bdhtml=window.document.body.innerHTML;
sprnstr="<!--startprint-->";
eprnstr="<!--endprint-->";
prnhtml=bdhtml.substr(bdhtml.indexOf(sprnstr)+17);
prnhtml=prnhtml.substring(0,prnhtml.indexOf(eprnstr));
window.document.body.innerHTML=prnhtml;
window.print();
}
</script>
<body>
<form id="WebForm1" method="post"
>
<center>本部分以上不被打印</center>
<!--startprint-->
<div align="center">
<asp:DataGrid id="dgShow"
runat="server">
<!--省略部分代码-->
</asp:DataGrid>
<table>
<tr><td>打印打印打印打印打印打印打印打印</td></tr>
</table>
</div>
<!--endprint-->
<center>本部分以下不被打印</center>
<div align="center">
<input type="button" name="print" value="预览并打印" onclick="preview()">
</div>
<style> @media Print { .Noprn { DISPLAY: none }}
</style>
<p class="Noprn">不打印</p>
<table
id="datagrid">
<tr>
<td>打印</td>
</tr>
</table>
<input class="Noprn" type="button"
onclick="window.print()" value="print">
</form>
</body>
</html>