由于 XHTML 文档应该以“application/xhtml”xml 的形式提供,并且 XML DOM 文档对象没有“cookie”,那么有什么选择呢?
由于 XHTML 文档应该作为“application/xhtml+xml”,并且 XML DOM 文档对象没有“cookie”(以及其他缺失的功能),那么使用 document.cookie 的跨平台替代方案是什么?
请参阅:http://www.w3.org/TR/ 2002/NOTE-xhtml-media-types-20020801/
“总之,'application/xhtml+xml' 应该用于 XHTML 系列 文档,并且“text/html”的使用应限于 HTML 兼容的 XHTML 1.0 文档。 “应用程序/xml”和“文本/xml” 也可以使用,但只要适当,'application/xhtml+xml' 应该使用而不是那些通用的 XML 媒体类型。”
Since XHTML documents SHOULD be served as "application/xhtml+xml", and the XML DOM document object has no "cookie" (among other missing features), what's the cross-platform alternative to using document.cookie?
See: http://www.w3.org/TR/2002/NOTE-xhtml-media-types-20020801/
"In summary, 'application/xhtml+xml' SHOULD be used for XHTML Family
documents, and the use of 'text/html' SHOULD be limited to
HTML-compatible XHTML 1.0 documents. 'application/xml' and 'text/xml'
MAY also be used, but whenever appropriate, 'application/xhtml+xml'
SHOULD be used rather than those generic XML media types."
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
HTML5 有 Web 存储,它提供
sessionStorage
和localStorage
。sessionStorage
http://www.w3.org/ TR/webstorage/#the-sessionstorage-attributelocalStorage
http://www.w3.org/ TR/webstorage/#the-localstorage-attributeHTML5 has Web Storage, which offers
sessionStorage
andlocalStorage
.sessionStorage
http://www.w3.org/TR/webstorage/#the-sessionstorage-attributelocalStorage
http://www.w3.org/TR/webstorage/#the-localstorage-attribute