我们分别为 PDF 标题和正文提供了不同的模板。现在我们想要不同页面上的不同标题。我们正在使用 NReco 将 HTML 转换为 PDF,版本是 1.1.12。
问问题
1044 次
1 回答
0
你现在可以使用这样的东西
你只需要像我在这里所做的那样将类设置为你的标题父元素
打印 p1-header 添加类 p1,打印 p2-header 将类 p2 添加到该特定页面上的容器
<header class="p1">
// this p1-header will be visible only rest will hide
<h1 class="p1-header">some text p1</h1>
<h1 class="p2-header">some text p2</h1>
<h1 class="p3-header">some text p3</h1>
</header>
.p1-header, .p2-header, .p3-header{
display: none;
}
.p1 .p1-header{
display: block;
}
.p2 .p2-header{
display: block;
}
.p3 .p3-header{
display: block;
}
于 2016-10-13T14:54:09.823 回答