自学内容网 自学内容网

关于printJs预览时样式失效问题

printJs是无法将通过class="***"的样式进行渲染的,需要将其写在行内样式style="***"中才可以,另外还可以在,css中控制其样式,比如

printJS({
      printable: 'printContent',
      type: "html",
      scanStyles: false,
      css: 'data:text/css, @media print {@page {size: A4 landscape;margin: 0mm; h1 { page-break-before: always; } h1:first-of-type { page-break-before: auto; } body{margin:0 5px}} table {width: 95%;border-collapse: collapse;font-size: 10px;}th, td {border: 1px solid #000000;}}}'
    });
size: A4 landscape;表示默认A4大小,横向打印。
h1 { page-break-before: always; } h1:first-of-type { page-break-before: auto; }设置了分页,用法就是在需要分页的地方加一个<h1></h1>即可。
table {width: 95%;border-collapse: collapse;font-size: 10px;}th, td {border: 1px solid #000000;}设置了表格的内外框线。

原文地址:https://blog.csdn.net/weixin_71146793/article/details/140101750

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!