为 html 表格添加脚注的首选方法是什么?

发布于 2024-08-26 01:12:31 字数 419 浏览 8 评论 0原文

像这样;这是 MS Word 文件的屏幕截图。

alt text

  • 我应该放入 tfoot 或在td 作为

    dwdwdewwe 或者我应该 放在

    中的 之后吗?
  • 我们可以把tfoot放在任何地方吗 在里面
  • 我应该给出脚注的链接* 跳转到底部的脚注。

Like this; this a screenshot of MS word file.

alt text

  • Should I put in a tfoot or in td
    as a <p>dwdwdewwe</p> or should I
    put after </table> in a <p></p>?
  • and can we put tfoot anywhere
    inside <table>
  • And should I give link to footnotes *
    to jum to footnotes at bottom.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

゛时过境迁 2024-09-02 01:12:31

使用tfoot 标签。它必须出现在 tbody 标记之前。另请参阅:http://www.w3.org /TR/html401/struct/tables.html#h-11.2.3

<table>
    <thead><tr><td colspan="5">This is the header and should span all columns.</td></tr></thead>
    <tfoot><tr><td colspan="5">This is the footer and should span all columns.</td></tr></tfoot>
    <tbody>
        <tr><td>11</td><td>12</td><td>13</td><td>14</td><td>15</td>
        <tr><td>21</td><td>22</td><td>23</td><td>24</td><td>25</td>
        <tr><td>31</td><td>32</td><td>33</td><td>34</td><td>35</td>
    </tbody>
</table>

Use the tfoot tag. It must appear before the tbody tag. See also: http://www.w3.org/TR/html401/struct/tables.html#h-11.2.3

<table>
    <thead><tr><td colspan="5">This is the header and should span all columns.</td></tr></thead>
    <tfoot><tr><td colspan="5">This is the footer and should span all columns.</td></tr></tfoot>
    <tbody>
        <tr><td>11</td><td>12</td><td>13</td><td>14</td><td>15</td>
        <tr><td>21</td><td>22</td><td>23</td><td>24</td><td>25</td>
        <tr><td>31</td><td>32</td><td>33</td><td>34</td><td>35</td>
    </tbody>
</table>
暮年 2024-09-02 01:12:31

我认为您应该使用 tfoot 标记,因为它在语义上是为此类内容指定的。但是,就像 HTML 中的许多事情一样,您不会被迫以某种方式执行此操作 - 您有一定的自由。

这个特定的示例无论哪种方式都足够了 - 作为一个包含 TD 的简单 TR (如果需要,可以使用 colspan),或者是一个包含 TFOOTTFOOT 。 code>TD (如有必要,可使用 collspan)。

至于在正文中添加链接以跳转到页脚,从可用性的角度来看,这非常好。但这类事情并不能客观地回答——这取决于你的项目要求是什么。

您不能将 TFOOT 放在表中任何地方,这是有规则的(... 是禁忌)。要正确使用 TFOOT 标记,请参阅 http://www. w3schools.com/tags/tag_tfoot.asp

I think you should use the tfoot tag, since it's semnatically designated for this type of stuff. But, like many things in HTML, you aren't forced to do it one way or another - you've got some liberty.

This particular example would suffice either way - as a simple TR containing a TD (with a colspan if necessary), or a TFOOT with a TD (with a collspan if necessary).

As far as adding links within the body to jump to the footer, it's awfully nice from a usability standpoint. But that type of thing isn't objectively answerable - it depends on what your project requiremens are.

You can't put a TFOOT just anywhere within a table, ther are rules (<td><tfoot>...</tfoot></td> would be a no-no). For proper use of the TFOOT tag, consult http://www.w3schools.com/tags/tag_tfoot.asp

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文