有没有一种方法可以打印带有链接到同一文档中各个位置的超链接的目标页码?
<h1>Table of Contents</h1>
<ul>
<li><a href="#introduction">Introduction</a></li>
</ul>
...
<section id="introduction"> <!-- Appears, for example, on page 3 when printed -->
<h1>Introduction</h1>
...
</section>
这样的输出是这样的:
Table of Contents (page 0)
Introduction.........................3
...
Introduction (page 3)
当打印为PDF(在OS X上)时,我只需要使用此工具即可与Google Chrome浏览器一起使用。
是否有一些CSS或JavaScript技巧可以使我实现这一目标?
最佳答案
看起来这是CSS规范的新工作草案的一部分:
http://www.w3.org/TR/2014/WD-css-gcpm-3-20140513/#cross-references
我怀疑还没有浏览器支持...
关于html - 在Chrome中使用CSS打印目录的页码,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24389341/