当前位置 : 主页 > 网络编程 > JavaScript >

toc算法 table of content

来源:互联网 收集:自由互联 发布时间:2021-06-28
生成toc算法 script type = "text/javascript" $(document).ready(function() { $("h2,h3,h4,h5,h6").each(function(i, item) { var tag = $(item).get(0).localName; $(item).attr("id", "wow" + i); $("#category").append('' + $(this).text() + '');
生成toc算法
< script type = "text/javascript" > $(document).ready(function() {
    $("h2,h3,h4,h5,h6").each(function(i, item) {
        var tag = $(item).get(0).localName;
        $(item).attr("id", "wow" + i);
        $("#category").append('' + $(this).text() + '');
        $(".newh2").css("margin-left", 0);
        $(".newh3").css("margin-left", 20);
        $(".newh4").css("margin-left", 40);
        $(".newh5").css("margin-left", 60);
        $(".newh6").css("margin-left", 80);
    });
}); < /script>/
网友评论