iframe 中的 Z 索引
我在 iframe 标记内有一个对象标记(flash),该标记位于页面 .Aspx 内。但在这个 .aspx 页面中,我有两个组合框,当展开组合框时,显示的选项位于 iframe 标记中的对象标记(flash)后面。
我尝试在 CSS 中临时放置一个 z-index,在组合框中设置高值,在 iframe 中设置低值,但没有成功。
有人可以帮助我吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
将 flash 对象的 wmode 属性设置为不透明。
Set the wmode property of flash object to opaque.
还尝试使用 z 索引设置位置,例如绝对值等。
加上您使用
希望它有帮助。
also try to set positions as well with the z indexes, like absolute etc.
plus you use
hope it helps.
我可以在页面渲染(运行)时看到,所以我认为我无法设置它。
这是我的代码,其中
The
<param>
I can see just when the page is rendered (runnig), so I think I can't set this.This is my code with the
<iframe>
<div class="fundo-passagem" style="padding-top:27px;">
<iframe runat="server" id="ifConteudo" name="ifConteudo" frameborder="0" height="790px"
width="960px" class="iframeInstitucional" style="position:inherit;">
</iframe>
</div>
z-index 对于
工作正常,但对于
则不起作用。
位于
内部,但恰好在页面呈现时。
The z-index works fine against the
<iframe>
but against the<object>
didn't work. The<object>
are inside the<iframe>
but just when the page are rendered.