从html链接到pdf中的书签


Hyperlink to a bookmark inside the pdf from html

我们可以在html页面中设置超链接以打开pdf并将超链接链接到pdf中的书签吗。

例如

html页面中有"单击此处"链接。如果用户点击此链接,它会打开一个pdf"test.pdf"。这个pdf有一些书签。那么我们能将超链接设置为打开并聚焦于特定书签?

感谢

您可以创建这样的链接:

<a href="http://www.example.com/info.pdf#page=5">Click here</a>

或者特别是对于书签,必须设置页面模式:

<a href="http://example.org/doc.pdf#pagemode=bookmarks&page=2">Click here</a>

请阅读Adobe文档中的更多内容。