没有值的 xml 属性有效吗?
我想要一个没有任何值的 XML 属性,该属性在存在或不存在时只有一个含义。
这有效吗?
I want to have an XML attribute without any value, which simply has one meaning when it exists or does not exist.
Is that valid?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
必须使用以下语法指定属性:
其中 Name 是 合法 XML 名称,Eq 是 = 前面或后面可以有空格,AttValue 是一个 合法属性值。
此定义对于 XML 1.0 和 XML 1.1。
如果您尝试指定如下属性:
那么不,这是无效的。如果您尝试以这种方式指定它:
那么是的,这是有效的。
An attribute must be specified with the following syntax:
where Name is a legal XML name, Eq is = optionally preceded or followed by whitespace, and AttValue is a legal attribute value.
This definition is true for both XML 1.0 and XML 1.1.
If you are trying to specify an attribute as below:
then no, that is not valid. If you are trying to specify it this way:
then yes, that is valid.