我正在开发基于小型网络的应用程序,其中用户被呈现2-3页长报告,可以打印为PDF。我在stackoverflow / internet上查看了不同的解决方案,发现了一些有效的解决方案,打印方面(内容打印有额外的边距,但我需要努力修复它)我当前的问题是我无法显示html浏览器中的内容与页面布局相同。我可以显示A4尺寸的第一页,但只要内容超过1页,就会看到它打印在外页,您可以查看下面的图像
这是CSS
.A4 {
background: white;
width: 21cm;
height: 29.7cm;
display: block;
margin: 0 auto;
padding: 10px 25px;
margin-bottom: 0.5cm;
box-shadow: 0 0 0.5cm rgba(0,0,0,0.5);
}
@media print {
.page-break { display: block; page-break-before: always; }
size: A4 portrait;
}
@media print {
.noprint {display:none;}
.enable-print { display: block; }
}
我正在努力解决以下问题,
答案 0 :(得分:13)
您的第二个问题:
您必须将体边距和填充设置为零。您还需要从A4类中删除框阴影,边距,宽度和高度,以便打印多个页面。
.A4 {
background: white;
width: 21cm;
height: 29.7cm;
display: block;
margin: 0 auto;
padding: 10px 25px;
margin-bottom: 0.5cm;
box-shadow: 0 0 0.5cm rgba(0, 0, 0, 0.5);
overflow-y: scroll;
box-sizing: border-box;
}
@media print {
.page-break {
display: block;
page-break-before: always;
}
size: A4 portrait;
}
@media print {
body {
margin: 0;
padding: 0;
}
.A4 {
box-shadow: none;
margin: 0;
width: auto;
height: auto;
}
.noprint {
display: none;
}
.enable-print {
display: block;
}
}
您的第一个问题:
您可以尝试通过计算滚动高度来创建分页功能,并继续从页面中删除元素,直到scollheight小于页面本身。
示例:https://jsfiddle.net/tk8rwnav/31/
var max_pages = 100;
var page_count = 0;
function snipMe() {
page_count++;
if (page_count > max_pages) {
return;
}
var long = $(this)[0].scrollHeight - Math.ceil($(this).innerHeight());
var children = $(this).children().toArray();
var removed = [];
while (long > 0 && children.length > 0) {
var child = children.pop();
$(child).detach();
removed.unshift(child);
long = $(this)[0].scrollHeight - Math.ceil($(this).innerHeight());
}
if (removed.length > 0) {
var a4 = $('<div class="A4"></div>');
a4.append(removed);
$(this).after(a4);
snipMe.call(a4[0]);
}
}
$(document).ready(function() {
$('.A4').each(function() {
snipMe.call(this);
});
});
这个例子打破了每个元素。这些段落不会破坏文字,但你可以实现这一点,但这会很快变得复杂。
答案 1 :(得分:0)
默认情况下,会为打印添加边距。如果您点击&#34;更多设置&#34;有一个Margins的下拉菜单。选择“无”以删除所有边距。
这样你就可以处理css中的边距。
答案 2 :(得分:0)
以下是 snipMe()函数的修订版,以确保第2-n页中的元素按原始顺序排列。我还添加了评论。
function snipMe() {
page_count++;
if (page_count > max_pages) {
return;
}
var long = $(this)[0].scrollHeight - Math.ceil($(this).innerHeight());
var children = $(this).children().toArray(); // Save elements in this page to children[] array
var removed = [];
// Loop while this page is longer than an A4 page
while (long > 0 && children.length > 0) {
var child = children.pop(); // Remove last array element from the children[] array
$(child).detach(); // JQuery Method detach() removes the "child" element from DOM for the current page
removed.push(child); // Add element that was removed to the end of "removed" array
long = $(this)[0].scrollHeight - Math.ceil($(this).innerHeight()); // Compute current size of the page
}
// If elements were removed from the page
if (removed.length > 0) {
var rev_removed = removed.reverse(); // Reverse the order of the removed array
var a4 = $('<div class="A4"></div>'); // Start a new page
a4.append(rev_removed); // Add elements removed from last page to the new page
$(this).after(a4); // Add the new page to the document
snipMe.call(a4[0]); // Recursively call myself to adjust the remainder of the pages
}
}