Detailed explanation of using new methods of html5 to manipulate element class names in JavaScript

Detailed explanation of using new methods of html5 to manipulate element class names in JavaScript

Earlier, JavaScript was not very convenient to process, as it was necessary to first obtain the class attribute and then process the string.

Now html5 adds classList attribute to all elements to manipulate class attributes, which is very convenient.

1. classList attribute

First look at the following code:

<ul class="nav">

    <li class="active">Column 1</li>

    <li>Column 2</li>

    <li>Column 3</li>

</ul>

<script type="text/javascript">

    // Get the current li element let activeLi = document.querySelector(".active");

    // Print classList attribute console.log(activeLi.classList)

    // Console output:

    // DOMTokenList ['active', value: 'active']

</script>

Console view effect:

classList attribute type:

classList attribute is of DOMTokenList type, and the class attributes can be operated through methods such as add , contains , and remove .

  • add(value) adds a new class name.
  • contains(value) Whether it contains the class name.
  • remove(value) deletes the class name.
  • toggle(value) If the class name exists, remove it, otherwise add it.

2. Practical Application

In practice, column switching is a very common application. Continuing with the above example, when clicking a column, move active to the corresponding column

<ul class="nav">

    <li class="item active">Column 1</li>

    <li class="item">Column 2</li>

    <li class="item">Column 3</li>

</ul>

 

<script type="text/javascript">

    let currentElement = document.querySelector(".nav").firstElementChild;

    // Traverse the li elements and set the click event while (currentElement) {

        currentElement.onclick = function() {

            // Remove the active li

            document.querySelector(".active").classList.remove("active");

            // The current li class adds active

            this.classList.add("active");

        }

        currentElement = currentElement.nextElementSibling;

    }

</script>

This makes it very convenient to implement without affecting other class names.

This is the end of this article about the detailed explanation of how to use the new method of html5 to operate element class names in JavaScript . For more relevant content about how to use the new method of html5 to operate element class names in JavaScript , please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • JavaScript operation element examples
  • Detailed explanation of JavaScript WebAPI, DOM, events and operation element examples
  • js operates two json arrays to merge, remove duplicates, and delete a certain element
  • vue.js click event gets the operation of the current element object
  • JavaScript HTML DOM element (node) add, edit, delete operation example analysis
  • JS document form form element operation complete example
  • Summary of common methods of JavaScript operation elements
  • JavaScript operation elements teach you how to change the page content style

<<:  Detailed explanation of some commonly used font-size font units and line-height in CSS

>>:  The spacing between multiple divs with inline-block is different from the programming method

Recommend

Eight common SQL usage examples in MySQL

Preface MySQL continued to maintain its strong gr...

The process of building and configuring the Git environment in Docker

Configure Git environment in Docker At work, I en...

How to notify users of crontab execution results by email

symptom I set a crontab task on a centos7 host, b...

Two implementations of front-end routing from vue-router

Table of contents Mode Parameters HashHistory Has...

How to use environment variables in nginx configuration file

Preface Nginx is an HTTP server designed for perf...

Detailed tutorial on installing Python 3.8.1 on Linux

This example takes the installation of Python 3.8...

CentOS 7 set grub password and single user login example code

There are significant differences between centos7...

Detailed explanation of the concept of docker container layers

Table of contents 01 Container consistency 02 Con...

js Promise concurrent control method

Table of contents question background Idea & ...

MySQL 5.6.28 installation and configuration tutorial under Linux (Ubuntu)

mysql5.6.28 installation and configuration method...

HTML table markup tutorial (15): table title

<br />This tag can be used to directly add a...

Detailed explanation of JavaScript implementation of hash table

Table of contents 1. Hash table principle 2. The ...

HTML code to add icons to transparent input box

I was recently writing a lawyer recommendation we...

Vue2.x responsiveness simple explanation and examples

1. Review Vue responsive usage​ Vue responsivenes...