html 中的多级列表
我想在 html 中自动创建项目列表的编号,如下所示:
1. Heading 1
Text
1.1 Heading 1.1
Text
2. Heading 2
Text
2.1 Heading 2.1
Text
2.2 Heading 2.2
Text
它与使用 Word、Latex 或任何其他允许您设置样式的程序相同。
有 JavaScript、CSS 等吗?
I want to have automatically created the numbering of a list of items in html, something like this:
1. Heading 1
Text
1.1 Heading 1.1
Text
2. Heading 2
Text
2.1 Heading 2.1
Text
2.2 Heading 2.2
Text
It is the same as using Word, Latex or any other that allows you setting styles.
Any JavaScript, CSS, etc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可以通过 css/HTML 来完成
以下站点有一个关于如何操作的很好的教程: http://doctype.com/make-ordered-list-go-up-111213-instead-123
This can be done through css/HTML
The following site has a nice tutorial on how to: http://doctype.com/make-ordered-list-go-up-111213-instead-123
我认为这可以归结为一些 JavaScript。有序列表等不会在这里帮助你。也许您可以使用基于子/父逻辑的 jquery 编写一些智能脚本来为您解决问题。
I think it gets down to some javascript. ordered lists etc. will not help you out here. Maybe you can write some smart script using jquery based on child/parent logic that does the trick for you.