我应该为 GWT 2.0 使用哪种文档类型?
我认为我应该为我的新 GWT 应用程序使用 ;我知道这样做将使我的应用程序进入符合标准的模式。我说得对吗?使用此文档类型有什么缺点吗? GWT 在符合标准的模式下能否正常工作?我很谨慎,因为 GWT 教程 仍然使用HTML 4.01 过渡文档类型。
I think I should use <!DOCTYPE html>
for my new GWT application; I understand that doing so will put my application into standards-compliant mode. Am I correct? Are there any disadvantages to using this doctype? Does GWT work properly in standards-compliant mode? I'm wary because the GWT tutorial still uses the HTML 4.01 transitional doctype.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
GWT 2.0 中的新布局面板功能需要标准模式和在怪异模式下不起作用。
The new layout panel functionality in GWT 2.0 requires standards mode and does not work in quirks mode.
使用
会将 Web 浏览器置于标准模式(而不是怪异模式),这几乎肯定是您想要的。但 HTML 4.01 Transitional 文档类型也会触发标准模式,因此没有区别。
我不知道在 GWT 中使用其中之一的含义 - 但说实话,我怀疑使用 HTML5 文档类型有任何优势,除非 GWT 正在做特殊的事情来支持 HTML5。
Using
<!DOCTYPE html>
will put the web browser into standards mode (as opposed to quirksmode) which is almost certainly what you want. But the HTML 4.01 Transitional doctype will also trigger standards mode, so there's no difference there.I've no idea of the implications of using one or the other with GWT - but I doubt there are any advantages to using the HTML5 doctype to be honest, unless GWT is doing special things to support HTML5.