printAction() {
console.log(document.getElementById("divcontentsonce"));
console.log(document.getElementById("ifmcontentstoprint"));
var content = document.getElementById("divcontentsonce");
var pri = document.getElementById("ifmcontentstoprint").contentWindow;
pri.document.write(content.innerHTML);
pri.print();
}
如何为print()提供CSS?
打印后纸张尺寸应为3英寸,如何在代码中进行打印?
谢谢。
答案 0 :(得分:0)
您可以使用CSS打印...
HTML文件
<p>This font changes when you print it</p>
CSS文件
p {
font-family:sans-serif;
}
@media print {
p {
font-family:serif;
}
}