JavaScript 打印DIV的内容
打印DIV内容的最佳方法是什么?
回答:
与早期版本相比有轻微变化-已在CHROME上测试
function PrintElem(elem){
var mywindow = window.open('', 'PRINT', 'height=400,width=600');
mywindow.document.write('<html><head><title>' + document.title + '</title>');
mywindow.document.write('</head><body >');
mywindow.document.write('<h1>' + document.title + '</h1>');
mywindow.document.write(document.getElementById(elem).innerHTML);
mywindow.document.write('</body></html>');
mywindow.document.close(); // necessary for IE >= 10
mywindow.focus(); // necessary for IE >= 10*/
mywindow.print();
mywindow.close();
return true;
}
以上是 JavaScript 打印DIV的内容 的全部内容, 来源链接: utcz.com/qa/431564.html