HTML:错误:开始标记已见但相同类型的元素已打开

时间:2016-09-26 13:49:00

标签: html html5 href

当我尝试验证代码时出现此问题:

Error: Start tag a seen but an element of the same type was already open.

我改了句子几次但似乎什么都没有用,坦率地说我不明白这个错误。

错误:开始标记已见但相同类型的元素已打开。 从第134行,第52栏;到第134行,第84栏 参加:<a href="https://www.drugs.com/">Medica

以下是我的代码出错的部分

<p>
    Resources: To learn more about diabetes and living with diabetes:
    <a href="http://www.diabetes.org/?referrer=https://www.google.com/">
        American    Diabetes Association><br>
        To learn more about the drugs that you are taking: 
    <a href="https://www.drugs.com/">
        Medications
    </a> 
    <a href="#top">
        Back to top of page
    </a>
</p>

2 个答案:

答案 0 :(得分:0)

您有三个<a>开始标记,只有两个</a>结束标记。您需要添加缺少的结束标记。

答案 1 :(得分:0)

这部分无效:

<a        href="http://www.diabetes.org/?referrer=https://www.google.com/">
American    Diabetes Association>

你需要像这样关闭它:

<a        href="http://www.diabetes.org/?referrer=https://www.google.com/">
American    Diabetes Association</a>