设置 iframe 对象的 Z 顺序
我正在使用 Javascript 作为带有下拉子菜单的菜单栏。但这些下拉菜单出现在我的 iframe 对象下并且不可见。如何将菜单的 Z 顺序设置为大于 iframe?
您可以在此处查看示例 http://theiatech.com/papers.php?paper=5。例如,应用程序菜单有 4 个子菜单项,但只有 3 个可见。
I am using Javascript for a menu bar with drop-down submenus. But these drop-down menus appear under my iframe object and are not visible. How do I set the Z-order of the menu to be greater than the iframe?
You can see an example here http://theiatech.com/papers.php?paper=5. The applications menu for example has 4 submenu items but only 3 are visible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 z-index 最重要的是将父容器设置为一种位置(相对或绝对)。 (当然,如果您想对它们进行 z 排序,则需要将它们放入同一个容器中)。
并且包含的对象也应该有一个位置......
到目前为止我对 z-index 使用的经验。
most important for z-index is to have the parent container set to a kind of position (relative or absolute). (for sure you need to put them into the same container if you want to z-order them against each other).
and the containing objects should have a position as well...
so far my experinces with z-index usage.