Home > Web Front-end > JS Tutorial > body text

A detailed explanation of the method of dynamically adding a circled serial number list in js

coldplay.xixi
Release: 2021-02-18 18:04:30
forward
1955 people have browsed it

A detailed explanation of the method of dynamically adding a circled serial number list in js

Free learning recommendation: js video tutorial

##1. First add the ul tag in the body

<!-- 无序列表 -->
Copy after login

2. Get the tag with the id equal to list through js

Define an empty string with To connect the added tags and display them
The js code in the picture shows the first three circle numbers with different colors and the remaining colors are the same

function autoAddList(){
    var oUl = document.getElementById('list');
    // var arr = ['湖南','广西','新疆','上海']
    var str = "";
    for (let i = 1; i <a><span>' + i + '</span></a>' + '<br>';
        }else if (i == 2) {
            str += '
Copy after login
  • ' + i + '
  • ' + '
    ';         }else if (i == 3) {             str += '
  • ' + i + '
  • ' + '
    ';         }else{             str += '
  • ' + i + '
  • ' + '
    ';         }             }     oUl.innerHTML = str;}

    3.css style Modify

    /*设置列表样式*/ul{
        list-style-type: none;}
    Copy after login

    list-style-type: none means no logo, and the attributes also include hollow circles, solid squares, numbers, etc.

    are arranged by serial number Neatly you need to set the span style

    /*设置为行内块状元素*/li span{
    	display:inline-block;}
    Copy after login

    The effect is as shown in the figure below
    A detailed explanation of the method of dynamically adding a circled serial number list in js

    Related free learning recommendations: javascript(Video)

    The above is the detailed content of A detailed explanation of the method of dynamically adding a circled serial number list in js. For more information, please follow other related articles on the PHP Chinese website!

    Related labels:
    source:csdn.net
    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    Popular Tutorials
    More>
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template
    About us Disclaimer Sitemap
    php.cn:Public welfare online PHP training,Help PHP learners grow quickly!