XML 版本 1.1 不被浏览器接受?
我有一个程序可以生成相当普通的 XML 文档。 此类生成文档的第一行是
<?xml version="1.1"?>
IE8 和 Firefox 都对此表示反对,抱怨“版本错误”并明确指出 指向“1.1”部分。
如果我修补第一行说:
<?xml version="1.0"?>
他们都会毫无怨言地加载/显示我的文档。
XML 1.1 版本不是一个标准吗?浏览器真的不接受这些吗? 或者错误消息(像大多数软件错误消息一样)只是误导性的并且 还有什么问题吗?
I have a program that produces rather vanilla XML documents.
The first line of such generated documents is
<?xml version="1.1"?>
IE8 and Firefox both object to this, by complaining "Wrong version" and explicitly
pointing to the "1.1" part.
If I patch the first line to say:
<?xml version="1.0"?>
both of them will load/show me document without complaint.
Isn't XML version 1.1 a standard? Do the browsers really not accept these?
Or is the error message (like with most software error messages) simply misleading and
something else is wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
XML 1.1 并不是事实上的标准,不是。它很少被使用,除非您有特定的原因使用它,否则您应该忽略它。
http://en.wikipedia.org/wiki/Xml
XML 1.1 is not the defacto standard, no. It's very rarely used, and unless you have a specific reason to use it, you should ignore it.
http://en.wikipedia.org/wiki/Xml
XML 1.1 似乎很少被接受。 1.0 更为常见。
XML 1.1 seems to have acheived very little acceptance. 1.0 is very much more common.