用javascript自动生成html的目录树

本文展示了如何使用JavaScript(辅助jQuery)为HTML文档生成目录树。代码示例中,遍历了HTML中的标题元素,为其添加ID,并构建了一个链接列表,形成目录结构。内容包括一个完整的HTML示例,包含目录树和文章段落,演示了如何展示和导航文档结构。
摘要由CSDN通过智能技术生成

一时兴起的需求是:用javascript自动生成html的目录树
效果是这个样子:
在这里插入图片描述

代码

虽然用了jQuery,但用的地方并不是很多,主要还是javascript。用的jQuery的版本是jquery-3.4.1.js

<script src="jquery-3.4.1.js"></script>
<script>
$(document).ready(function (){
    var hs=$("h2").siblings();
    var con=0;
    for (var i=0;i<hs.length;i++){//遍历网页,找文章标题
        if(hs[i].localName.charAt(0)=="h"){
            hs[i].setAttribute("id","t"+con);//给标签添加id
            var num=parseInt(hs[i].localName.charAt(1))-2;
            while (num--){//添加空格
                $("#cataStree").append("&emsp;");
            }
            //添加目录树
            $("#cataStree").append("<a href='#t"+con+"'>"+$(hs[i]).text()+"</a><br>");
            con++;
        }
    }
});
</script>

哎,这个是纯自己写的,感觉挺繁重的。嗨嗨~

一个完整的html,demo

<!doctype html>
<html>
<head>
<meta charset='UTF-8'><meta name='viewport' content='width=device-width initial-scale=1'>
<title>spring帮助文档</title></head>
<style>
    a:link{
        text-decoration:none;
        color:black;
        /* 指正常的未被访问过的链接*/
    }
    a:visited{
        text-decoration:none;
        color:black;
        /*指已经访问过的链接*/
    }a:hover{
         text-decoration:none;
         color: greenyellow;
         /*指鼠标在链接*/
     }
    a:active{
        text-decoration:none;
        color:black;
        /* 指正在点的链接*/
    }
.cata {
width: 23%;
    height: 100%;
    overflow:hidden;
    float: left;

    text-overflow:ellipsis;
}
    .text {
width: 77%;
        height: 100%;
        float: left;
    }
</style>
<script src="jquery-3.4.1.js"></script>
<script>
$(document).ready(function (){
    var hs=$("h2").siblings();
    var con=0;
    for (var i=0;i<hs.length;i++){//遍历网页,找文章标题
        if(hs[i].localName.charAt(0)=="h"){
            hs[i].setAttribute("id","t"+con);//给标签添加id
            var num=parseInt(hs[i].localName.charAt(1))-2;
            while (num--){//添加空格
                $("#cataStree").append("&emsp;");
            }
            //添加目录树
            $("#cataStree").append("<a href='#t"+con+"'>"+$(hs[i]).text()+"</a><br>");
            con++;
        }
    }
});
</script>

<body>
<div id="cataStree" class="cata"></div>
<div class="text">
<h2>springboot</h2>
<h3>springboot帮助</h3>
<h4>简介</h4>
<p>如果你接触过spring你会觉得spring开发数据库,网络编程真的简单,当你学完springboot后你会觉的springboot就是个神器。开发是真的高效率。</p>
<p>我对springboot的理解就是,对spring的再一次封装,springboot的底层还是调用spring。</p>
<h4>特点</h4>
<ul>
<li>创建独立的Spring应用程序</li>
<li>直接嵌入Tomcat,Jetty或Undertow(无需部署WAR文件)</li>
<li>提供自以为是的“入门”依赖项,以简化构建配置</li>
<li>尽可能自动配置Spring和3rd Party库</li>
<li>提供可用于生产的功能,例如指标,运行状况检查和外部化配置</li>
<li>完全没有代码生成,也不需要XML配置</li>

</ul>
<h4>配置文件</h4>
<h4>自动生成的引导类</h4>
<p>这个作为springboot启动引导类,使项目的启动入口。其他写的逻辑业务代码包必须是在这个类的同包或者是子包。</p>
<p>@SpringBootApplication标记启动类</p>
<pre><code class='language-java' lang='java'>/**
 * 注意:本类必须在其他代码的父包或同包中
 */
@SpringBootApplication
public class QuickApplication {
    public static void main(String[] args) {
        SpringApplication.run(QuickApplication.class, args);
    }
}
</code></pre>
<p>&nbsp;</p>
<h3>springboot注解帮助</h3>
<h4>@RequestBody与@RequestParam()</h4>
<p>@RequestBody</p>
<p>主要用来<strong>接收前端传递给后端的json字符串中的数据</strong>(请求体中的数据的)</p>
<p>GET方式无请求体,所以使用@RequestBody接收数据时,前端不能使用GET方式提交数据,而是用POST方式进行提交。</p>
<p>@RequestBody与@RequestParam()可以同时使用,@RequestBody最多只能有一个,而@RequestParam()可以有多个。</p>
<h4>@RestController</h4>
<p>已准备好使用该类来处理Web请求。</p>
<p>这是因为@RestController将@Controller和@ResponseBody组合在一起。即@RestController=@ResponseBody + @Controller。</p>
<h4>@ResponseBody</h4>
<p>返回json或xml数据到前台页面</p>
<h4>@RequestMapping</h4>
<p>使用@RequestMapping(&quot;/a&quot;)来映射请求,下面给出栗子:</p>
<pre><code class='language-java' lang='java'>@Controller
public class web1 {
    @RequestMapping(&quot;/m1&quot;)
    @ResponseBody
    public String m1(){
        return &quot;你好啊&quot;;
    }
}
</code></pre>
<p>&nbsp;</p>
</div>
</body>
</html>
在 Vue 中使用 Markdown 生成文档时,可以通过以下步骤自动生成侧边栏目录: 1. 在项目中安装 `markdown-it` 和 `markdown-it-anchor` 库: ```bash npm install markdown-it markdown-it-anchor --save ``` 2. 在 Vue 组件中引入并初始化 `markdown-it` 和 `markdown-it-anchor`: ```javascript import MarkdownIt from 'markdown-it' import MarkdownItAnchor from 'markdown-it-anchor' const md = new MarkdownIt({ html: true, linkify: true, typographer: true, }) md.use(MarkdownItAnchor) ``` 3. 在 Vue 组件中使用 `v-html` 指令渲染 Markdown 文本,并使用 `@hook:mounted` 钩子函数监听渲染完成事件,在事件处理函数中获取文档中所有标题标签(如 `h1`、`h2` 等),并根据标题级别生成目录: ```html <template> <div> <div v-html="html"></div> <div class="sidebar"> <ul> <li v-for="item in toc" :key="item.id"> <a :href="'#' + item.id">{{ item.text }}</a> <ul v-if="item.children"> <li v-for="child in item.children" :key="child.id"> <a :href="'#' + child.id">{{ child.text }}</a> </li> </ul> </li> </ul> </div> </div> </template> <script> export default { data() { return { html: '', toc: [], } }, mounted() { this.html = md.render('# Hello World\n## Introduction\n### Features\n### Installation\n## Usage\n## API Reference') this.$nextTick(() => { const headers = Array.from(document.querySelectorAll('h1, h2, h3, h4, h5, h6')) this.toc = headers.map(header => ({ id: header.id, text: header.textContent, level: Number(header.tagName[1]), })).reduce((acc, header) => { let lastItem = acc[acc.length - 1] if (!lastItem || header.level <= lastItem.level) { acc.push(header) } else { let parent = lastItem while (parent.children && header.level > parent.level) { parent = parent.children[parent.children.length - 1] } if (!parent.children) { parent.children = [] } parent.children.push(header) } return acc }, []) }) }, } </script> ``` 4. 在 Vue 组件的样式中定义侧边栏样式: ```css .sidebar { position: fixed; top: 0; right: 0; bottom: 0; width: 200px; padding: 20px; overflow-y: auto; } ``` 这样就可以在 Vue Markdown 文档中自动生成侧边栏目录了。当然,这只是一个简单的示例,实际项目中可能需要根据具体需求进行一些定制化调整。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值