ModalPopupExtender 不适用于 IE6 框架布局
我使用的“框架”布局类似于 这个出色的答案:页面顶部有一个 div #top,左侧有一个 div#left,还有一个包含主要内容的 div #main。 #top 和 #left div 包含导航菜单。
现在我想在内容 (#main) div 中使用 AjaxControlToolkit ModalPopupExtender 来使用弹出 div。
这在 IE8 上运行良好(其中 #top、#left、#main 都有位置:固定),但是当我在 IE6 上运行它时,模式背景仅覆盖 #main div - 我需要它覆盖整个页面包括#top 和#left 导航div。
查看 ModalPopupExtender 的脚本,它似乎正在搜索父层次结构,直到找到具有相对或绝对位置的父级。在 IE6 渲染中,#main div 具有position:absolute,因为不支持position:fixed,我想这解释了发生了什么。
对于在 IE6 上正常工作的最佳/最简单方法有什么建议吗?理想情况下不修改 ModalPopupExtender 代码,但如果必须的话我会这样做,这是最好的解决方案。
I'm using a "frame" layout similar to the one in this excellent answer: a div #top at the top of the page, a div#left on the left, and a div #main with the main content. The #top and #left divs contain navigation menus.
Now I want to use a popup div using the AjaxControlToolkit ModalPopupExtender inside the content (#main) div.
This works fine on IE8 (where #top, #left, #main all have position:fixed), but when I run it on IE6, the modal background only covers the #main div - I need it to cover the whole of the page including the #top and #left navigation divs.
Looking at the script for ModalPopupExtender, it appears to be searching up the parent hierarchy until it finds a parent with position relative or absolute. And in the IE6 rendering, the #main div has position:absolute because position:fixed is not supported, which I guess explains what is happening.
Any suggestions for the best/easiest way to get this working properly on IE6? Ideally without modifying the ModalPopupExtender code, but I'll do this if I have to and it's the best solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 这个答案中实现了解决方案的变体,这似乎解决了问题:
对于 IE6,有条件地使 #main div 位置:静态,且 margin-left 等于
#left div 的宽度。不幸的是,margin-top 似乎在 IE6 中不起作用,所以...
对于 IE6,有条件地在主 div 之前添加一个空的 div,其 id 为 ie6-spacer。
将 ie6-spacer div 的高度设置为与 #top div 相同的高度。
这看来是有窍门。
I've implemented a variant of the solution in this answer, which appears to solve the problem:
For IE6, conditionally make the #main div position:static with margin-left equal to the
width of the #left div. Unfortunately margin-top doesn't seem to work in IE6, so...
For IE6, conditionally add an empty div with the id ie6-spacer before the main div.
Set the height of the ie6-spacer div to the same height as the #top div.
This appears to the trick.