带有“NAME”的HTML5脚注编码

时间:2018-02-06 04:55:33

标签: html html5 anchor

我在几十份文件中有数百个脚注。

全部采用HTML4格式。我需要将所有页面更新为HTML5。

当使用HTML5的代码检查程序时,我被告知已弃用“NAME”,并且我收到警告以更改代码。

我找不到解决此问题的代码示例。我不想做任何花哨的事情。我不想通过将鼠标悬停在脚注调用上来显示脚注。我只是希望能够点击脚注编号并在页面底部找到它然后返回!如果没有“NAME”,我不知道如何做到这一点。

目前作为一个例子,这是我的代码的样子。 (我在任何给定的页面上都有十个或更多的脚注。

<P>This is in the regular text
<A NAME="sdfootnote1anc" HREF="#sdfootnote1sym"><SUP>1</SUP></A>></P>

它在页面底部调用它。

<p><DIV ID="sdfootnote1">
    <A NAME="sdfootnote1sym" HREF="#sdfootnote1anc">1</A> - Here I am explaining it before I go on after the break to the next footnote.</DIV><BR>

1 个答案:

答案 0 :(得分:2)

将名称更改为ID

 <A CLASS="sdfootnoteanc" id="sdfootnote1anc" HREF="#sdfootnote1sym">


 <A CLASS="sdfootnotesym" id="sdfootnote1sym" HREF="#sdfootnote1anc">1</A>