我有一个 pdftron webviewer,我试图在config.js之外访问它。这个答案建议通过访问 iframe 变量contentWindow
并获取readerControl
.
但问题是iframe
由 PDFTron WebViewer 创建的具有随机 id 属性。为了让我们自信地使用它,我们需要将 iframe 的id
or设置class
为我们所知道的。我正在尝试iframe
使用其中的document
对象访问封闭。我找到了有关如何以其他方式访问的解决方案。
$(document).parents()
一片空白
我的 HTML
<head>
</head>
<body>
<iframe id="random_number">
#document
</iframe>
</body>