获取嵌入式pdf的当前页码

时间:2015-05-10 08:41:56

标签: javascript jquery html pdf iframe

我打算开发一个webapp。该页面的左侧有一个iframe,右侧有一个javascript表单。 iframe将用于从服务器查看pdf。

我一直在寻找捕获或获取iframe中正在查看的pdf的当前页码的方法。

这可能吗?

1 个答案:

答案 0 :(得分:1)

一个建议是尝试使用PDF.js,这是一个使用HTML5构建的PDF查看器。这可能有助于您避免使用iFrame呈现PDF。但是,如果您出于其他原因需要iFrame,请尝试查看PDF.js示例。正如previous stackoverflow thread所示,您可以利用以下功能:

PDFJS.getDocument('helloworld.pdf').then(function(pdf) {
    // you can now use *pdf* here

    pdf.getPage(1).then(function(page) {
            // you can now use *page* here
        });
}); 

希望这有助于事业。