使用javascript - 横向模式打印到硬拷贝

时间:2011-10-11 07:03:42

标签: javascript html css

使用javascript以横向模式打印网页。打印时,我想:

  1. 设置边距
  2. 风景模式

1 个答案:

答案 0 :(得分:10)

您可以使用@page CSS rule

标记打印页面的大小和边距
/* In CSS, not JavaScript */
@page {
  size: A4 landscape;
  margin: 42pt 12pt;
}

@media print {
  /* Define print-specific styles here, for example toning down the decoration
     of hyperlinks and removing the navigation. */
  a {color: inherit !important; text-decoration: none !important;}
  nav {display: none;}
}

然而,browser support是不稳定的 - 除prince XML外,只有IE8 +和Opera支持它。如果您希望对打印进行精确的跨浏览器控制,请考虑(通常是服务器端)PDF输出机制。