标准 GWT 应用程序是否会因为不同的 Internet 浏览器而运行不同?
今天,我在不同的互联网浏览器中以 gwt 开发模式测试了我的测试应用程序。
- A) IE7
- B) FF4
由于某种原因,应用程序仅在 IE7 中运行良好,但在 FF4.0 中它失去了多层支持。例如,它不支持这种结构算法
- SplitLayoutPanel“A”(左:树;右:带有按钮“C”的简单面板“B”)
- 事件:单击按钮“C”-简单面板“B”setWidget SplitLayoutPanel“ D"
所以...它没有显示 SplitLayoutPanel "D" :( 而不是 SplitLayoutPanel "D" 它是一个空白的简单面板 "B" :( 但问题是...在 IE7 中都可以正常工作eclipse gwt 设计器...
所以我的问题是 GWT 应用程序是否会根据 Internet 浏览器及其 GWT 开发插件运行错误?
谢谢
Today I tested my test app in gwt dev mode in different Internet Browsers.
- A) IE7
- B) FF4
for some reason app runs fine in IE7 only but in FF4.0 it is loosing many-layers support. For example it doesn't support this kind of structure algorythm
- SplitLayoutPanel "A" (left: tree; right: simple panel "B" with Button "C")
- Event: Button "C" clicked - simple panel "B" setWidget SplitLayoutPanel "D"
So... it is no SplitLayoutPanel "D" is shown :( Instead of SplitLayoutPanel "D" it is a blank simple panel "B" :( But the thing is... All the same works fine in IE7 and eclipse gwt designer...
So my question is can GWT app run wrong depending of Internet Browser and its GWT dev plugin?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简短的回答是:是的。最终,您在不同的浏览器上运行 HTML/Javascript 代码,因此会受到这些平台变化的影响。 Google 尽力保护您免受许多问题的困扰,但我也遇到了一些差异。
The short answer is: yes. Ultimately you are running HTML/Javascript code on different browsers and will as such be subjected to those platform's variations. Google try hard to shelter you from many problems, but I've come across differences.