我正在使用类似于以下代码的 HTML5 页面上嵌入 pdf 文档:
<div style="background: transparent url(loading.gif) no-repeat">
<object height="1250px" width="100%" type="application/pdf" data="aaa.pdf">
<param value="aaa.pdf" name="src"/>
<param value="transparent" name="wmode"/>
</object>
</div>
(这个问题的答案)
在某个时刻,我想重新加载嵌入的 pdf 文件而不重新加载整个页面。这怎么能做?