为 html 表格添加脚注的首选方法是什么?
像这样;这是 MS Word 文件的屏幕截图。
- 我应该放入
tfoot
或在td
作为
中的dwdwdewwe
或者我应该 放在之后吗?
- 我们可以把
tfoot
放在任何地方吗 在里面
- 我应该给出脚注的链接* 跳转到底部的脚注。
Like this; this a screenshot of MS word file.
- Should I put in a
tfoot
or intd
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
tfoot
标签。它必须出现在tbody
标记之前。另请参阅:http://www.w3.org /TR/html401/struct/tables.html#h-11.2.3Use the
tfoot
tag. It must appear before thetbody
tag. See also: http://www.w3.org/TR/html401/struct/tables.html#h-11.2.3我认为您应该使用
tfoot
标记,因为它在语义上是为此类内容指定的。但是,就像 HTML 中的许多事情一样,您不会被迫以某种方式执行此操作 - 您有一定的自由。这个特定的示例无论哪种方式都足够了 - 作为一个包含
TD
的简单TR
(如果需要,可以使用 colspan),或者是一个包含TFOOT
的TFOOT
。 code>TD (如有必要,可使用 collspan)。至于在正文中添加链接以跳转到页脚,从可用性的角度来看,这非常好。但这类事情并不能客观地回答——这取决于你的项目要求是什么。
您不能将
TFOOT
放在表中任何地方,这是有规则的(...
是禁忌)。要正确使用TFOOT
标记,请参阅 http://www. w3schools.com/tags/tag_tfoot.aspI 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 aTD
(with a colspan if necessary), or aTFOOT
with aTD
(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 theTFOOT
tag, consult http://www.w3schools.com/tags/tag_tfoot.asp