iPad 兼容性
我有一个使用 jQuery 开发的 Web 应用程序,具有 web2.0 外观和外观。感觉。
所有弹出窗口 (window.open) 均已替换为类似于 jQuery ui 模态表单的模态 div 小部件。
我遇到的问题是,当内容很长时,不会显示垂直滚动条,并且内容会从包含的 div 中退出。
第一个解决方案是仅针对 iPad 在新窗口(使用 window.open)中打开内容。 这适用于静态内容:问题是,当内容必须与加载它的页面交互时,我会收到很多 javascript 错误,因为使用 window.open 时,“父”页面不再可见。
此类问题有模式吗? 亲切的问候 马西莫
I have a web-application developed with jQuery with a web2.0 look & feel.
All the popups (window.open) have been substituted with a modal div widget similar to the the jQuery ui modal form.
I have the problem that when the content is very long the vertical scroll-bar is not displayed and the content exits the div where is contained.
A first solution was to open the content in a new window (with window.open) only for iPad.
This works for static content: the problem is that when the content has to interact with the page where it was loaded I receive a lot of javascript errors since with window.open the "parent" page is not visible anymore.
Is there a pattern for this kind of problems?
Kind regards
Massimo
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这种情况下,我得到的解决方案是指开窗器而不是父级。
I got the solution referring in that cases on window opener instead of the parent.