开发者

Can data-* attribute contain HTML tags?

I.E. <img src="world.开发者_StackOverflow中文版jpg" data-title="Hello World!<br/>What gives?"/>


As far as I understand the guidelines, it is basically valid, but it's better to use HTML entities.

From the HTML 4 reference:

You should also escape & within attribute values since entity references are allowed within cdata attribute values. In addition, you should escape > as > to avoid problems with older user agents that incorrectly perceive this as the end of a tag when coming across this character in quoted attribute values.

From the HTML 5 reference:

Except where otherwise specified, attributes on HTML elements may have any string value, including the empty string. Except where explicitly stated, there is no restriction on what text can be specified in such attributes.

So the best thing to do, as @tdammers already says, is to escape these characters (quoting the W3C reference)

  • &amp; to represent the & sign.
  • &lt; to represent the < sign.
  • &gt; to represent the > sign.
  • &quot; to represent the " mark.

and decoding them from their entity values if they are to be used as HTML.


Providing you're serving it as text/html, then yes it's valid.

Note that not only is it possible to include markup inside attributes, but the HTML5 srcdoc attribute on the iframe element positively encourages it. The HTML5 draft says:

In the HTML syntax, authors need only remember to use U+0022 QUOTATION MARK characters (") to wrap the attribute contents and then to escape all U+0022 QUOTATION MARK (") and U+0026 AMPERSAND (&) characters, ....

Note, that when served with an XML content type (e.g. application/xhtml+xml), it is not valid, or even well-formed.


I'd say yes, as in it's still valid HTML5. Older browsers (which ones?) may not parse correctly.

Section 3.2.4.1 Attributes of the current HTML5 draft says this:

Except where otherwise specified, attributes on HTML elements may have any string value, including the empty string. Except where explicitly stated, there is no restriction on what text can be specified in such attributes.

HTML tags inside attributes also validates at http://html5.validator.nu


No. That would be invalid - HTML does not allow < or > inside attributes.

<img src="world.jpg" data-title="Hello World!&lt;br/&gt;What gives?"/> would be valid, but it would display the <br/> literally, not as a newline.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜