XML - 引用数字属性

时间:2012-06-18 14:07:04

标签: xml syntax standards quotes

是否应引用XML中的数字属性?

<root>
  <node size=45 />
  <foo bar=1.2>
    <baz foo=20>
  </foo>
</root>

VS

<root>
  <node size="45" />
  <foo bar="1.2">
    <baz foo="20">
  </foo>
</root>

我的代码编辑器/浏览器似乎没有引号,但大多数在线资源似乎都说它们是必需的。

1 个答案:

答案 0 :(得分:4)

http://www.w3schools.com/xml/xml_attributes.asp

  

必须引用XML属性

必须始终引用属性值。可以使用单引号或双引号。对于一个人的性别,person元素可以这样写:

<person sex="female">

或者像这样:

<person sex='female'>

如果属性值本身包含双引号,则可以使用单引号,如下例所示:

<gangster name='George "Shotgun" Ziegler'>

或者您可以使用字符实体:

<gangster name="George &quot;Shotgun&quot; Ziegler">

根据最新评论进行了更新,至少根据微软的说法进行了扩展。

XElement.Value Property

public string Value { get; set; }

你也可以看到这个question也参考