SimpleModal Jquery插件位置问题
我对这个线程有同样的问题: 关于SimpleModal jQuery插件的问题——初始打开后可以重新居中吗?
我尝试了可能的解决方案,但没有成功。我的页面有一个滚动条,打开模式后,我有一些调整 div 大小的操作。但是当div超出窗口可见区域时,超出的内容将被隐藏。当我滚动页面时,模式保持在同一位置!
它在 IE6 上运行良好,在 IE8 上运行良好。
I have the same problem of this thread: Question about SimpleModal jQuery plugin -- possible to re-center after initial open?
I tried the possible solution, but no success. My page have a scrollbar and after I open the modal, I have some action that resize the div. But when the div exceed the window visible area, the exceeded content is hidden. When I scroll the page the modal stay on the same position!
Its works well on IE6, not no on IE8.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议设置 max-height 和 max-width 以防止对话框变得太大。然后,您可能需要确保此 div 的样式包含 overflow:scroll。
I would suggest setting max-height and max-width to keep the dialog from growing too large. Then you may need to make sure that the styling for this div includes overflow:scroll.
可能的解决方案的示例:
我将考虑在 SimpleModal 中放置一个调整大小函数,它将处理大部分这些步骤。在那之前,这应该对您有用。
-埃里克
Example of a possible solution:
I'm going to look into putting a resize function in SimpleModal, which would take care of most of these steps. Until then, this should work for you.
-Eric