HTML标签中的ID是否允许为空?

前端之家收集整理的这篇文章主要介绍了HTML标签中的ID是否允许为空?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
HTML元素上的ID属性是否为空?
<div id=""></div>

我正在使用一个模板,其中元素的ID由一个可能不总是具有值的变量设置,我想知道是否可能导致任何不可预见的问题。

编辑:“变量”实际上是Django模板中的可编辑区域(块)。这意味着我无法对其进行任何条件逻辑。

<div id="{% block id %}{% endblock %}">

而不是:

<div {% block id %}{% endblock %}>

哪些在子模板中必须被继承为:

{% block id %}id="whatever"{% endblock %}

解决方法

根据W3C:

ID and NAME tokens must begin with a
letter ([A-Za-z]) and may be followed
by any number of letters,digits
([0-9]),hyphens (“-“),underscores
(“_”),colons (“:”),and periods
(“.”).

(来源:Basic HTML data types)

这将表明属性的空白值根据上述定义无效。

试图验证一个空的ID属性返回以下内容

Syntax of attribute value does not
conform to declared value

<div id="">something</div>

The value of an attribute contained something that is not allowed by the specified Syntax for that type of attribute. For instance,the “selected” attribute must be either minimized as “selected” or spelled out in full as “selected=”selected””; the variant “selected=””” is not allowed.

原文链接:https://www.f2er.com/html/233662.html

猜你在找的HTML相关文章