我有一个问题是在Safari中为Ipad获取PDF的高度。
我得到了PDF滚动问题的解决方法,但由于Iframe中的PDF会发生变化,我需要找到一个解决方案来动态获取每个PDF的高度。
这是Iframe:
<div id="container" style="height: 625px; width: 620px; overflow: auto; float:right;">
<iframe id="pdfFrame" height="1500px" width="620px"></iframe>
</div>
我将src
添加到:
$('#pdfFrame').attr('src', 'test.pdf');
所以我尝试使用contents()
函数获得高度:
$("#pdfFrame").load(function() {
$("#pdfFrame").contents("???").height();
});
有什么建议吗?
谢谢!