Html SortSite文本不允许发送消息

Html SortSite文本不允许发送消息,html,w3c,Html,W3c,我正在使用SortSite检查我的网站的可访问性。我有一个错误,我只是不能清楚,我希望得到更多的眼睛,看看是否有人可以告诉我什么是错误的。。。错误仅表示不允许使用文本。。。有人有什么想法吗?谢谢 <ul> <li><span class="obscure" id="Communicating+With+Young+Children_category">Communicating With Young Children</span><a h

我正在使用SortSite检查我的网站的可访问性。我有一个错误,我只是不能清楚,我希望得到更多的眼睛,看看是否有人可以告诉我什么是错误的。。。错误仅表示不允许使用文本。。。有人有什么想法吗?谢谢

<ul>
  <li><span class="obscure" id="Communicating+With+Young+Children_category">Communicating With Young Children</span><a href="p_module_categories.php?id_division=d01&amp;id_category=001&amp;id_module=001&amp;page=1" aria-label="Communicating+With+Young+Children_category">Communicating With Young Children</a></li>
  <li><span class="obscure" id="Considering+Parenthood_category">Considering Parenthood</span><a href="p_module_categories.php?id_division=d01&amp;id_category=002&amp;id_module=001&amp;page=1" aria-label="Considering+Parenthood_category">Considering Parenthood</a></li>
  <li><span class="obscure" id="Children%27s+Self-Esteem_category">Children's Self-Esteem</span><a href="p_module_categories.php?id_division=d01&amp;id_category=003&amp;id_module=001&amp;page=1" aria-label="Children%27s+Self-Esteem_category">Children's Self-Esteem</a></li>
</ul>

我刚刚用HTML 5验证程序运行了你的HTML,如下所示

<!DOCTYPE html>
<html>
<head>
<title>Test</title>
</head>
<body>
<ul>
  <li><span class="obscure" id="Communicating+With+Young+Children_category">Communicating With Young Children</span><a href="p_module_categories.php?id_division=d01&amp;id_category=001&amp;id_module=001&amp;page=1" aria-label="Communicating+With+Young+Children_category">Communicating With Young Children</a></li>
  <li><span class="obscure" id="Considering+Parenthood_category">Considering Parenthood</span><a href="p_module_categories.php?id_division=d01&amp;id_category=002&amp;id_module=001&amp;page=1" aria-label="Considering+Parenthood_category">Considering Parenthood</a></li>
  <li><span class="obscure" id="Children%27s+Self-Esteem_category">Children's Self-Esteem</span><a href="p_module_categories.php?id_division=d01&amp;id_category=003&amp;id_module=001&amp;page=1" aria-label="Children%27s+Self-Esteem_category">Children's Self-Esteem</a></li>
</ul>
</body>
</html>
后果 该文档是有效的HTML5+ARIA+SVG1.1+MathML2.0

这让我相信sortSite会抱怨,因为span元素的id属性与HTML4规则冲突

id属性需要以下内容

ID和名称标记必须以字母[a-Za-z]开头,后面可以是任意数量的字母、数字[0-9]、连字符、下划线、冒号和句点

只需要

该值不能包含任何空格字符


非常感谢。这是非常有帮助的,我已经努力使这个网站符合几周了,这对我来说是一个障碍-我感谢你的输入!!: