引用下面的内容。
<object id="WebBrowser1" width=0 height=0 classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></object>
第一步,在html准备一个div,里面即是你要打印的内容。
<!--startprint--><!--注意要加上html里star和end的这两个标记-->
<div id="wts_div" style="width:876px">
</div>
<!--endprint-->
第二步:调用方法体
function doPrint() {
remove_ie_header_and_footer();
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();
}