如何在 HTML5 中将数量数据与列表元素一起标记?

发布于 2024-10-20 22:36:19 字数 722 浏览 1 评论 0原文

我有一个用于导航的无序列表的类别。对于每个类别,我想提供有关每个类别中的项目数量的信息,因此我得到这样的导航:

First category      5
Second cat...       2
Next                9
Last category       1

我希望以类似的方式标记它

<nav>
  <ul>
    <li><a href="1.html">First category</a> <span>5</span></li>
    <li><a href="2.html">Second cat...</a> <span>2</span></li>
    <li><a href="3.html">Next</a> <span>9</span></li>
    <li><a href="4.html">Last category</a> <span>1</span></li>
  </ul>
</nav>

,但我想知道是否有更语义特定的标签用于数量大于

I have an unordered list of categories to use for navigation. For each category I want to provide information about the number of items in each category, so I get the navigation like this:

First category      5
Second cat...       2
Next                9
Last category       1

I want this to be marked up in a way like

<nav>
  <ul>
    <li><a href="1.html">First category</a> <span>5</span></li>
    <li><a href="2.html">Second cat...</a> <span>2</span></li>
    <li><a href="3.html">Next</a> <span>9</span></li>
    <li><a href="4.html">Last category</a> <span>1</span></li>
  </ul>
</nav>

but I would like to know if there is a more semantically specific tag to use for the quantities than <span>?

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

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

发布评论

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

评论(1

表情可笑 2024-10-27 22:36:19

据我所知,情况并非如此。本例中的信息纯粹是针对人类读者的,而不是针对任何技术读者的,因此对我来说,跨度是合适的,如果有必要的话。

Not that I'm aware of. The information in this case is purely for the human reader and not for any technology one, so to me span is appropriate, if it's even required at all.

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