博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
window.print 打印指定 div
阅读量:5301 次
发布时间:2019-06-14

本文共 912 字,大约阅读时间需要 3 分钟。

window.print可以打印网页,但有时候我们只希望打印特定控件或内容,怎么办呢?

首先我们可以把要打印的内容放在div中,然后用下面的代码进行打印。

<html>

<head>
<script language="javascript">
function printdiv(printpage)
{
var headstr = "<html><head><title></title></head><body>";
var footstr = "</body>";
var newstr = document.all.item(printpage).innerHTML;
var oldstr = document.body.innerHTML;
document.body.innerHTML = headstr+newstr+footstr;
window.print();
document.body.innerHTML = oldstr;
return false;
}
</script>
<title>div print</title>
</head>
<body>
//HTML Page
//Other content you wouldn't like to print
<input name="b_print" type="button" class="ipt"   onClick="printdiv('div_print');" value=" Print ">
<div id="div_print">
<h1 style="Color:Red">The Div content which you want to print</h1>
</div>
//Other content you wouldn't like to print
//Other content you wouldn't like to print
</body>
</html>

转载于:https://www.cnblogs.com/WhiteAir/archive/2012/08/31/2665544.html

你可能感兴趣的文章
sqlServer 2008 一行转多行的问题
查看>>
liburl常见库函数解释
查看>>
Maximum Subarray - LeetCode
查看>>
jsp内置对象(转)
查看>>
2018.08.06 bzoj1503: [NOI2004]郁闷的出纳员(非旋treap)
查看>>
2018.08.28 九份的咖啡店(费用流)
查看>>
Linux chmod命令修改文件与文件夹权限命令代码
查看>>
翻译:MariaDB ALTER TABLE语句
查看>>
多生成树协议MSTP
查看>>
ASP.NET MVC 5 默认模板的JS和CSS 是怎么加载的
查看>>
Nero超刻DVDrip电影完全攻略
查看>>
iOS--多线程之GCD
查看>>
Isometric Game 及译法漫谈
查看>>
StrutsPrepareAndExecuteFilter
查看>>
[Silic]国外注入帝
查看>>
C中自增运算符“++”的介绍
查看>>
hdu3586 Information Disturbing 【树形dp】
查看>>
洛谷 P1013 进制位 【搜索 + 进制运算】
查看>>
二叉树遍历算法——包含递归前、中、后序和层次,非递归前、中、后序和层次遍历共八种...
查看>>
实验四:201571030116/201571030106《小学四则运算练习软件需求说明》结对项目报告...
查看>>