单引号在 HTML/XHTML 中有效吗?

发布于 2024-08-20 14:38:38 字数 117 浏览 7 评论 0原文

单引号在 HTML 中有效吗?更具体地说:XHTML 严格。

<table width="100%">
<table width='100%'>

Are single quotes valid in HTML? And more specifically: XHTML strict.

<table width="100%">
<table width='100%'>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

难如初 2024-08-27 14:38:38

是的,单引号有效。

来自 XML 规范:

[10]   AttValue  ::= '"' ([^<&"] | Reference)* '"'
                  |  "'" ([^<&'] | Reference)* "'"

Yes, single quotes are valid.

From the XML spec:

[10]   AttValue  ::= '"' ([^<&"] | Reference)* '"'
                  |  "'" ([^<&'] | Reference)* "'"
离笑几人歌 2024-08-27 14:38:38

关于这个问题的混乱来源似乎来自这篇文章,

http://www.javascriptkit.com /howto/xhtml_intro.shtml

似乎声称单引号在 xhtml 中无效。然而,由于没有引用任何规范,并且该文章还声称禁止使用小写的属性和元素名称,因此作者可能只是表达了反对使用单引号的编辑禁止。

A source of confusion on this matter seems to come from this article,

http://www.javascriptkit.com/howto/xhtml_intro.shtml

which seems to claim that single quotes are not valid in xhtml. However, since no specification is cited, and since the article also claims that lowercase names for attributes and elements are forbidden, the author may merely be expressing an editorial prohibition against using single quotes.

夜巴黎 2024-08-27 14:38:38

根据规范,两者都是有效的:-)

[9]    EntityValue    ::=    '"' ([^%&"] | PEReference | Reference)* '"'  
   |  "'" ([^%&'] | PEReference | Reference)* "'" 
[10]    AttValue    ::=    '"' ([^<&"] | Reference)* '"'  
   |  "'" ([^<&'] | Reference)* "'" 
[11]    SystemLiteral    ::=    ('"' [^"]* '"') | ("'" [^']* "'")  
[12]    PubidLiteral    ::=    '"' PubidChar* '"' | "'" (PubidChar - "'")* "'"

并且W3C验证器接受它也是如此。

According to the spec, both are valid :-)

[9]    EntityValue    ::=    '"' ([^%&"] | PEReference | Reference)* '"'  
   |  "'" ([^%&'] | PEReference | Reference)* "'" 
[10]    AttValue    ::=    '"' ([^<&"] | Reference)* '"'  
   |  "'" ([^<&'] | Reference)* "'" 
[11]    SystemLiteral    ::=    ('"' [^"]* '"') | ("'" [^']* "'")  
[12]    PubidLiteral    ::=    '"' PubidChar* '"' | "'" (PubidChar - "'")* "'"

And the W3C-Validator accepts it as well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文