Div 无法在 IE8 / IE9 中克服 PDF,但可以在 FF 和 IE9 上使用。铬合金
我想通过 PDF 获取 DIV。 此示例适用于 FF,但不适用于 IE 8 / 9。注意:无论 PDF 指向什么,这都是相同的结果。
<html>
<head></head>
<body>
<div style="position:absolute;z-index:1000;background-color:pink;z-index:1000">
I'm over PDF
</div>
<iframe src="http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/js_api_reference.pdf" style="width:100%;height:100%;z-index:0">
</body>
</html>
I want to get my DIV over a PDF.
This example works fine with FF but does not work with IE 8 / 9. note: this is the same result whatever PDF pointed too.
<html>
<head></head>
<body>
<div style="position:absolute;z-index:1000;background-color:pink;z-index:1000">
I'm over PDF
</div>
<iframe src="http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/js_api_reference.pdf" style="width:100%;height:100%;z-index:0">
</body>
</html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在此处找到了解决方案
您基本上需要在 div 下面插入并清空 iframe,但覆盖 PDF 并使用 Z 索引:pdf (1)、背景 iframe (50)、内容 div (100)。
Found a solution here
You basically need to insert and empty iframe below the div but overlaying the PDF and play with Z-index : pdf (1), background iframe (50), content div (100).