<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;
w=window.open("","_blank","k");
w.document.write(headstr+newstr+footstr);
w.print();
document.body.innerHTML = oldstr;
return false;
}
</script>
<title>div print</title>
</head>
<body>
<input name="b_print" type="button" class="ipt" onClick="printdiv('div_print');" value=" Print ">
<div id="div_print">
<h1>The Div content which you want to print</h1>
</div>
</body>
</html>
转至http://forums.asp.net/t/1261525.aspx/2/10
总结代码
<script>
function print()
{
var headstr = "<html><head><title></title></head><body>";
var footstr = "</body>";
var newstr = document.getElementById('div_print').innerHTML;
var oldstr = document.body.innerHTML;
document.body.innerHTML=headstr+newstr+footstr;
w=window.open("","_blank","k");
w.document.write(headstr+newstr+footstr);
if (navigator.appName == 'Microsoft Internet Explorer') window.print();
else w.print();
w.close();
document.body.innerHTML = oldstr;
return false;
}
</script>
该函数将红色的部分作为ID的div打印出来