gpt4 book ai didi

iframe - 如何从 PDF.js iframe 获取当前 PDF 页码?

转载 作者:行者123 更新时间:2023-12-01 15:53:15 47 4
gpt4 key购买 nike

我将查看器托管在我的本地网络服务器上,iframe 指向并加载 pdf。

然后我想按下一个按钮,将页码“记录”到一个文本文件中,我读到 this似乎建议您可以使用 pdf.getPage 获取页码的问题和答案,但是当它从 iframe 内部运行时如何访问 PDFJS?

谢谢。

最佳答案

var iFrame =  document.getElementById('iframe_id');
if ( iFrame.contentDocument ) {
currentPageNum= iFrame.contentDocument.getElementById('pageNumber').value;
}
alert(currentPageNum);

这将访问 iframe,然后在 viewer.html 中搜索包含页码的元素。现在需要做的就是将 currentPageNum 传递给表单。

关于iframe - 如何从 PDF.js iframe 获取当前 PDF 页码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35873181/

47 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com