如下方法:
代码语言:javascript复制 function printProof(){
var printData = document.getElementById("forPrint").innerHTML; // 只打印 forPrint 这个div中的内容。
window.document.body.innerHTML = printData; //把 html 里的数据 复制给 body 的 html 数据 ,相当于重置了整个页面的 内容
window.print();
}
参考:http://blog.csdn.net/oqqyeyi/article/details/37922381