jquery菜单在嵌入代码中加载pdf之后

发布于 2024-12-10 20:57:21 字数 313 浏览 0 评论 0原文

我的左侧有下拉菜单,右侧有 pdf

<iframe visible="true" id="ipdf2" src="pdf/product.pdf" height="600" width="665" runat="server" frameborder="0" scrolling="auto" allowtransparency="true"> </iframe>

当我将鼠标悬停在菜单上时,它位于 pdf 后面,当我将鼠标悬停在 Firefox 和 IE 中的菜单上时,它会显示和隐藏。

谢谢, 高拉夫

I have drop down menu on the left and pdf on the right

<iframe visible="true" id="ipdf2" src="pdf/product.pdf" height="600" width="665" runat="server" frameborder="0" scrolling="auto" allowtransparency="true"> </iframe>

When i mouse ver the menus it goes behind the pdf and it shows and hide when i mouse over the menu in Firefox and IE.

Thanks,
Gaurav

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

依 靠 2024-12-17 20:57:21
.myMenu {
    position:relative;
    z-index:2; /* something higher than your iFrame */
}
iframe {
    position:relative;
    z-index:1;
}
.myMenu {
    position:relative;
    z-index:2; /* something higher than your iFrame */
}
iframe {
    position:relative;
    z-index:1;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文