gpt4 book ai didi

html - IE 中 iframe 中 pdf 的 zIndex 问题

转载 作者:搜寻专家 更新时间:2023-10-31 22:31:09 26 4
gpt4 key购买 nike

我的 .net 元素中有一个自定义 HTML 处理程序,它显示 PDF 文件,在 chrome 和其他浏览器中它显示正确,但在 IE 中,PDF 的 z-index 高于所有其他堆叠元素。我的意思是当我滚动时,iframe 中的 pdf 会覆盖我的菜单和其他固定元素。

最佳答案

我在 IE 页面上的任何自由 float 元素上遇到了同样的问题,这个函数解决了这个问题。

function fixPDFzIndexIssue (idToFix) {
if(!idToFix) return "Please provide the id of the div to fix";

var $divToFix = $('#' + idToFix);

$divToFix.wrap("<div class='outer'></div>");

$(".outer").append("<iframe src='about:blank' class='cover'>");
$(".cover").css({
'min-width': '100%',
'min-height': '100%',
'overflow': 'hidden',
'position': 'absolute',
'border': 'none',
'left': 0,
'top':0,
'z-index': -1
});
}

似乎任何悬停在 PDF 上的 div 都需要在其下方放置一个 iFrame,以便它在 PDF 上呈现。

关于html - IE 中 iframe 中 pdf 的 zIndex 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18846604/

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