我想從瀏覽器的第二頁到第二頁打印, 如何在javascript中調用window.print();
之前指定範圍。如何以編程方式指定要在瀏覽器中打印的頁面範圍(使用javascript或css)
這是我的風格爲介質打印
<style type="text/css" media="print"> .pageBreak { page-break-before: avoid; page-break-after: avoid; page-break-inside: avoid; height: 100%; } @page { size: landscape; } </style>
感謝
http://vikku.info/codesnippets/javascript/print-div-content-print-only-the-content-of-an-html-element-and-not-the-whole-document/這會有幫助嗎您? – lsof
將您想要的內容放入'div'並將其內容加載到打印窗口中。 – lsof