window dayin

来源:互联网 发布:数据存储管理 编辑:程序博客网 时间:2024/05/13 01:33
<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>  
我是不想被打印的部分,你们组装的表格可以用js拼接好,循环把数据放在这里面就行了。
(代码具备了设置表头,页脚文字,功能,自定义打印内容,想要啥格式也可以加css样式拼好html代码就行了)
//Other content you wouldn't like to print  
//Other content you wouldn't like to print  
</body>  
  
</html>
0 0
原创粉丝点击