无法计算 pdf 页码的分页 使用 counter(page) 和 counter(pages) 是内置于 CSS 中的页面计数器

Can't count pagination of pdf page number Using counter(page) and counter(pages) are page counters that are built into CSS

提问人:Md Yousuf Hossan 提问时间:10/19/2023 更新时间:10/19/2023 访问量:21

问:

我有一个 html 模板报告,并使用 Apache 速度填充数据 这里我添加了一个页脚,在页脚部分将显示页码,但它显示第 0 页,共 0 页,我不知道为什么会发生这种情况。

按照我使用的链接代码。发短信

我在下面写了这段代码

CSS公司

#pageNumber::after {
   content: counter(page)
}

#totalPages::after {
   content: counter(pages)
}

Html 格式

 Page <span id="pageNumber"></span> of <span id="totalPages"></span>
Java HTML CSS 、Apache-Velocity

评论


答: 暂无答案