gpt4 book ai didi

internet-explorer - 在 IE10 中嵌入 PDF

转载 作者:行者123 更新时间:2023-12-03 18:04:07 24 4
gpt4 key购买 nike

我需要在 HTML 文档中嵌入一个 PDF,该文档可以在 .Net 应用程序上的 IE8/9/10、firefox 和 chrome 中查看。我需要远离 3rd 方图书馆,因为我们需要满足发布日期并且没有时间通过​​我们的法律部门推送新的许可证。我已经尝试了以下解决方案,但由于列出的原因,它们都不起作用。我不认为这应该很难做到,所以欢迎提出任何想法。

<object src='MyUrl.pdf' />

对象标签不起作用,因为 .Net 中的对象标签需要一个与它们相关联的类
<embed src='MyUrl.pdf' type='application/pdf' />

嵌入标签在 IE10 中似乎不起作用。什么都没有显示,但缺少图像图标
<iframe src='MyUrl.pdf' style="z-index: 1; zoom: 1" />

在 IE10 中,无法控制 iframe 的 z-index,并且页面上的菜单在框架后面下拉。

正如我所提到的,任何帮助表示赞赏。

最佳答案

这适用于大多数浏览器。

我在 IE 中确实有一个 z-index 问题,因为我有一个固定位置的标题。

<object data="myurl.pdf" type="application/pdf" width="600px" height="500px">
<param name="wmode" value="transparent" />
<param name="allowFullScreen" value="true"></param>
<embed src="myurl.pdf"
type="application/pdf"
width="600px"
height="500px"
allowscriptaccess="always"
allowfullscreen="true"
wmode="transparent"
/>
</object>

关于internet-explorer - 在 IE10 中嵌入 PDF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16402291/

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